Changeset 831 in ExiteCMS


Ignore:
Timestamp:
09/19/07 22:09:41 (4 years ago)
Author:
hverton
Message:

removed optional module icons from the trunk
updated the db_setup code

Location:
trunk
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/administration/tools/create_dbsetup.php

    r813 r831  
    4545$config .= $crlf."define('PLI_VERSION', '".$settings['version']."');".$crlf; 
    4646$config .= "define('PLI_REVISION', '".$settings['revision']."');".$crlf; 
     47$config .= $crlf."if (\$step == 1) {".$crlf; 
    4748$config .= $crlf."$"."fail = ".'"0"'.";".$crlf; 
    4849$config .= "$"."failed = array();".$crlf; 
     
    7778    $config .= '}'.$crlf; 
    7879} 
     80$config .= $crlf."}".$crlf; 
    7981$config .= "//----------------------------------------------------------".$crlf; 
    8082$config .= "?>"; 
  • trunk/includes/dbsetup_include.php

    r813 r831  
    22//---------------------------------------------------------- 
    33// PLi-Fusion file : dbsetup_include.php 
    4 // Date generated  : `17/09/2007 12:05` 
     4// Date generated  : `18/09/2007 22:46` 
    55//---------------------------------------------------------- 
    66 
    77define('PLI_VERSION', '7.00'); 
    88define('PLI_REVISION', '800'); 
     9 
     10if ($step == 1) { 
    911 
    1012$fail = "0"; 
     
    593595  `panel_name` varchar(100) NOT NULL default '', 
    594596  `panel_filename` varchar(100) NOT NULL default '', 
    595   `panel_content` text NOT NULL, 
     597  `panel_code` text NOT NULL, 
     598  `panel_template` text NOT NULL, 
    596599  `panel_side` tinyint(1) unsigned NOT NULL default '1', 
    597600  `panel_order` smallint(5) unsigned NOT NULL default '0', 
     
    602605  `panel_usermod` tinyint(1) unsigned NOT NULL default '0', 
    603606  `panel_state` tinyint(1) unsigned NOT NULL default '0', 
     607  `panel_datestamp` int(10) unsigned NOT NULL default '0', 
    604608  PRIMARY KEY  (`panel_id`) 
    605609) ENGINE=MYISAM;"); 
     
    11341138    $failed[] = "wiki_users : ".mysql_error(); 
    11351139} 
     1140 
     1141} 
    11361142//---------------------------------------------------------- 
    11371143?> 
  • trunk/locale/English/admin/main.php

    r814 r831  
    1414$locale['211'] = "Forums"; 
    1515$locale['212'] = "Images"; 
    16 $locale['213'] = "Infusions"; 
    17 $locale['214'] = "Infusion Panels"; 
     16$locale['213'] = "Modules & Plugins"; 
     17$locale['214'] = "Plugins"; 
    1818$locale['215'] = "Members"; 
    1919$locale['216'] = "News"; 
     
    2323$locale['220'] = "Polls"; 
    2424$locale['221'] = "Shoutbox"; 
    25 $locale['222'] = "Site Links"; 
     25$locale['222'] = "Menu System"; 
    2626$locale['223'] = "Submissions"; 
    2727$locale['224'] = "Upgrade"; 
  • trunk/themes/PLiTheme/templates/source/admin.panel_editor.tpl

    r813 r831  
    5959        </tr> 
    6060        {/if} 
    61         {if $panel_id == 0} 
     61        {if true || $panel_id == 0} 
    6262        <tr> 
    6363            <td class='tbl'> 
Note: See TracChangeset for help on using the changeset viewer.