Changes in [2905:a7a0df6048be:2906:6e7e433ef6d3]
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r2801 r2896 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 -rf 69 70 70 71 ## Create digest -
admin/preferences.php
r2853 r2899 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 376 354 # User profile 377 355 echo '<div class="multi-part" id="user-profile" title="'.__('My profile').'">'; -
inc/prepend.php
r2884 r2903 140 140 # Constants 141 141 define('DC_ROOT',path::real(dirname(__FILE__).'/..')); 142 define('DC_VERSION','2. 7.3');142 define('DC_VERSION','2.8-dev'); 143 143 define('DC_DIGESTS',dirname(__FILE__).'/digests'); 144 144 define('DC_L10N_ROOT',dirname(__FILE__).'/../locales'); -
plugins/themeEditor/_define.php
r2663 r2890 16 16 /* Description*/ "Theme Editor", 17 17 /* Author */ "Olivier Meunier", 18 /* Version */ '1. 1',18 /* Version */ '1.2', 19 19 array( 20 20 'type' => 'plugin' -
plugins/themeEditor/class.themeEditor.php
r2862 r2890 20 20 protected $tplset_theme; 21 21 22 protected $parent_name; 22 23 protected $tplset_name; 23 24 … … 38 39 if ($parent_theme) { 39 40 $this->parent_theme = path::real($this->core->blog->themes_path.'/'.$parent_theme); 41 $this->parent_name = $parent_theme; 40 42 } 41 43 $tplset = $this->core->themes->moduleInfo($this->core->blog->settings->system->theme,'tplset'); … … 78 80 } 79 81 $list .= ($list_theme != '' ? sprintf('<li class="group-file">'.__('From theme:').'<ul>%s</ul></li>',$list_theme) : ''); 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) : ''); 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) : ''); 82 86 } else { 83 87 foreach ($files as $k => $v)
Note: See TracChangeset
for help on using the changeset viewer.