Ignore:
Timestamp:
Apr 29, 2011, 9:51:03 PM (14 years ago)
Author:
Zaphod
Message:

version 1.3.7 - new option to force text to lowercase + bug correction

Location:
extensions/stripped/admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/stripped/admin/admin.inc.php

    r9991 r10688  
    1818        $config['animatedTabs']=isset($_POST['f_animatedTabs']);
    1919        $config['replaceActionIcons']=isset($_POST['f_replaceActionIcons']);
     20        $config['noLowercase']=!isset($_POST['f_forceLowercase']);
    2021        $config['showTitleOnBrowsePath']=isset($_POST['f_showTitleOnBrowsePath']);
    2122        $config['showDescriptionInsteadOfTitle']=isset($_POST['f_showDescriptionInsteadOfTitle']);
  • extensions/stripped/admin/admin.tpl

    r9964 r10688  
    2323                                        <span class="property">{'Replace all icons by ALT text'|@translate}</span>&nbsp;
    2424                                        <input type="checkbox" name="f_replaceActionIcons" {if $options.replaceActionIcons}checked{/if}>
     25                                </label></li>
     26                                <li><label>
     27                                        <span class="property">{'Force text to lowercase'|@translate}</span>&nbsp;
     28                                        <input type="checkbox" name="f_forceLowercase" {if !($options.noLowercase)}checked{/if}>
    2529                                </label></li>
    2630                        </ul>
  • extensions/stripped/admin/maintain.inc.php

    r9964 r10688  
    1212        'animatedTabs'                                  => true,
    1313        'replaceActionIcons'                    => true,
     14        'noLowercase'                                   => false,
    1415        'showTitleOnBrowsePath'                 => false,
    1516        'showDescriptionInsteadOfTitle' => false,
  • extensions/stripped/admin/upgrade.inc.php

    r9987 r10688  
    1212        'animatedTabs'                                  => true,
    1313        'replaceActionIcons'                    => true,
     14        'noLowercase'                                   => false,
    1415        'showTitleOnBrowsePath'                 => false,
    1516        'showDescriptionInsteadOfTitle' => false,
Note: See TracChangeset for help on using the changeset viewer.