Plugin Directory

Changeset 1533060


Ignore:
Timestamp:
11/12/2016 07:55:04 PM (9 years ago)
Author:
odathp
Message:

Tagged v6.0.13

Location:
bmlt-tabbed-ui/tags/6.0.13
Files:
5 copied

Legend:

Unmodified
Added
Removed
  • bmlt-tabbed-ui/tags/6.0.13/bmlt-tabbed-ui.php

    r1481976 r1533060  
    55Description: Adds a jQuery Tabbed UI for BMLT.
    66Author: Jack S Florida Region
    7 Version: 6.0.12
     7Version: 6.0.13
    88*/
    99/* Disallow direct access to the plugin file */
     
    234234                "exclude_zip_codes" => Null
    235235            ), $atts));
     236
    236237            $root_server            = ($root_server != '' ? $root_server : $this->options['root_server']);
    237238            $root_server            = ($_GET['root_server'] == Null ? $root_server : $_GET['root_server']);
     
    248249            $time_format            = ($time_format == '' ? 'g:i a' : $time_format);
    249250
     251            if ($root_server == '') {
     252                Return '<p><strong>BMLT Tabs Error: Root Server missing.<br/><br/>Please go to Settings -> BMLT_Tabs and verify Root Server</strong></p>';
     253            }
     254
    250255            // $has_tabs = ($view_by == 'city' ? '0' : $has_tabs);
    251256            if ($view_by != 'city' && $view_by != 'weekday') {
     
    268273                    $service_body = $service_body_id;
    269274                }
    270             }
    271             if ($root_server == '') {
    272                 Return '<p><strong>BMLT Tabs Error: Root Server missing.<br/><br/>Please go to Settings -> BMLT_Tabs and verify Root Server</strong></p>';
    273275            }
    274276            $services = '';
     
    14191421            }
    14201422            $this->options = $theOptions;
     1423            $path_parts = pathinfo($this->options['root_server']);
     1424            $this->options['root_server'] = $path_parts['dirname'];
    14211425        }
    14221426        /**
     
    14241428         */
    14251429        function save_admin_options() {
     1430            $path_parts = pathinfo($this->options['root_server']);
     1431            $this->options['root_server'] = $path_parts['dirname'];
    14261432            update_option($this->optionsName, $this->options);
    14271433            return;
  • bmlt-tabbed-ui/tags/6.0.13/readme.txt

    r1481976 r1533060  
    77Requires at least: 3.6
    88
    9 Tested up to: 4.6
    10 
    11 Stable tag: 6.0.12
     9Tested up to: 4.6.1
     10
     11Stable tag: 6.0.13
    1212
    1313BMLT Tabbed UI implements a Tabbed UI for BMLT.
     
    3939== Changelog ==
    4040
     41= 6.0.13 =
     42
     43* Fix - Use only root server path when user inadvertantly includes a filename.
     44
    4145= 6.0.12 =
    4246
Note: See TracChangeset for help on using the changeset viewer.