Changes in [2906:6e7e433ef6d3:2905:a7a0df6048be]
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r2896 r2801 67 67 find ./$(DIST)/ -type d -name '.git' | xargs -r rm -rf 68 68 find ./$(DIST)/ -type f -name '.*ignore' | xargs -r rm -rf 69 find ./$(DIST)/ -type f -name '.flow' | xargs -r rm -rf70 69 71 70 ## Create digest -
admin/preferences.php
r2899 r2853 352 352 ); 353 353 354 if (!empty($_GET['upd'])) { 355 dcPage::success(__('Personal information has been successfully updated.')); 356 } 357 if (!empty($_GET['updated'])) { 358 dcPage::success(__('Personal options has been successfully updated.')); 359 } 360 if (!empty($_GET['db-updated'])) { 361 dcPage::success(__('Dashboard options has been successfully updated.')); 362 } 363 if (!empty($_GET['append'])) { 364 dcPage::success(__('Favorites have been successfully added.')); 365 } 366 if (!empty($_GET['neworder'])) { 367 dcPage::success(__('Favorites have been successfully updated.')); 368 } 369 if (!empty($_GET['removed'])) { 370 dcPage::success(__('Favorites have been successfully removed.')); 371 } 372 if (!empty($_GET['replaced'])) { 373 dcPage::success(__('Default favorites have been successfully updated.')); 374 } 375 354 376 # User profile 355 377 echo '<div class="multi-part" id="user-profile" title="'.__('My profile').'">'; -
inc/prepend.php
r2903 r2884 140 140 # Constants 141 141 define('DC_ROOT',path::real(dirname(__FILE__).'/..')); 142 define('DC_VERSION','2. 8-dev');142 define('DC_VERSION','2.7.3'); 143 143 define('DC_DIGESTS',dirname(__FILE__).'/digests'); 144 144 define('DC_L10N_ROOT',dirname(__FILE__).'/../locales'); -
plugins/themeEditor/_define.php
r2890 r2663 16 16 /* Description*/ "Theme Editor", 17 17 /* Author */ "Olivier Meunier", 18 /* Version */ '1. 2',18 /* Version */ '1.1', 19 19 array( 20 20 'type' => 'plugin' -
plugins/themeEditor/class.themeEditor.php
r2890 r2862 20 20 protected $tplset_theme; 21 21 22 protected $parent_name;23 22 protected $tplset_name; 24 23 … … 39 38 if ($parent_theme) { 40 39 $this->parent_theme = path::real($this->core->blog->themes_path.'/'.$parent_theme); 41 $this->parent_name = $parent_theme;42 40 } 43 41 $tplset = $this->core->themes->moduleInfo($this->core->blog->settings->system->theme,'tplset'); … … 80 78 } 81 79 $list .= ($list_theme != '' ? sprintf('<li class="group-file">'.__('From theme:').'<ul>%s</ul></li>',$list_theme) : ''); 82 $list .= ($list_parent != '' ? sprintf('<li class="group-file">'.__('From parent:').' %s<ul>%s</ul></li>', 83 $this->parent_name,$list_parent) : ''); 84 $list .= ($list_tpl != '' ? sprintf('<li class="group-file">'.__('From template set:').' %s<ul>%s</ul></li>', 85 $this->tplset_name,$list_tpl) : ''); 80 $list .= ($list_parent != '' ? sprintf('<li class="group-file">'.__('From parent:').'<ul>%s</ul></li>',$list_parent) : ''); 81 $list .= ($list_tpl != '' ? sprintf('<li class="group-file">'.__('From template set:').'<ul>%s</ul></li>',$list_tpl) : ''); 86 82 } else { 87 83 foreach ($files as $k => $v)
Note: See TracChangeset
for help on using the changeset viewer.