Changeset 13467
- Timestamp:
- Mar 2, 2012, 11:14:38 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/include/functions_install.inc.php
r13242 r13467 135 135 foreach ($themes->fs_themes as $theme_id => $fs_theme) 136 136 { 137 if (in_array($theme_id, array(' Sylvia', 'clear', 'dark', 'smartpocket')))137 if (in_array($theme_id, array('elegant', 'Sylvia', 'clear', 'dark', 'smartpocket'))) 138 138 { 139 139 $themes->perform_action('activate', $theme_id); -
trunk/admin/include/functions_upgrade.php
r12922 r13467 120 120 'Sylvia', 121 121 'dark', 122 'elegant', 122 123 ); 123 124 … … 163 164 $query = ' 164 165 UPDATE '.PREFIX_TABLE.'user_infos 165 SET theme = \' Sylvia\'166 SET theme = \'elegant\' 166 167 WHERE user_id = '.$conf['default_user_id'].' 167 168 ;'; -
trunk/admin/include/updates.class.php
r12802 r13467 24 24 $this->types = array($page); 25 25 } 26 $this->default_themes = array('clear', 'dark', 'Sylvia' );26 $this->default_themes = array('clear', 'dark', 'Sylvia', 'elegant'); 27 27 $this->default_plugins = array('admin_multi_view', 'c13y_upgrade', 'language_switch', 'LocalFilesEditor'); 28 28 -
trunk/include/constants.php
r13463 r13467 25 25 define('PHPWG_VERSION', '2.4.0RC1'); 26 26 define('PHPWG_DEFAULT_LANGUAGE', 'en_UK'); 27 define('PHPWG_DEFAULT_TEMPLATE', ' Sylvia');27 define('PHPWG_DEFAULT_TEMPLATE', 'elegant'); 28 28 29 29 define('PHPWG_THEMES_PATH', $conf['themes_dir'].'/'); -
trunk/install/piwigo_structure-mysql.sql
r13038 r13467 415 415 `show_nb_hits` enum('true','false') NOT NULL default 'false', 416 416 `recent_period` tinyint(3) unsigned NOT NULL default '7', 417 `theme` varchar(255) NOT NULL default ' Sylvia',417 `theme` varchar(255) NOT NULL default 'elegant', 418 418 `registration_date` datetime NOT NULL default '0000-00-00 00:00:00', 419 419 `enabled_high` enum('true','false') NOT NULL default 'true',
Note: See TracChangeset
for help on using the changeset viewer.