Dotclear


Ignore:
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r2801 r2896  
    6767     find ./$(DIST)/ -type d -name '.git' | xargs -r rm -rf 
    6868     find ./$(DIST)/ -type f -name '.*ignore' | xargs -r rm -rf 
     69     find ./$(DIST)/ -type f -name '.flow' | xargs -r rm -rf 
    6970 
    7071     ## Create digest 
  • admin/preferences.php

    r2853 r2899  
    352352); 
    353353 
    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  
    376354# User profile 
    377355echo '<div class="multi-part" id="user-profile" title="'.__('My profile').'">'; 
  • inc/prepend.php

    r2884 r2903  
    140140# Constants 
    141141define('DC_ROOT',path::real(dirname(__FILE__).'/..')); 
    142 define('DC_VERSION','2.7.3'); 
     142define('DC_VERSION','2.8-dev'); 
    143143define('DC_DIGESTS',dirname(__FILE__).'/digests'); 
    144144define('DC_L10N_ROOT',dirname(__FILE__).'/../locales'); 
  • plugins/themeEditor/_define.php

    r2663 r2890  
    1616     /* Description*/         "Theme Editor", 
    1717     /* Author */             "Olivier Meunier", 
    18      /* Version */            '1.1', 
     18     /* Version */            '1.2', 
    1919     array( 
    2020          'type'         =>        'plugin' 
  • plugins/themeEditor/class.themeEditor.php

    r2862 r2890  
    2020     protected $tplset_theme; 
    2121 
     22     protected $parent_name; 
    2223     protected $tplset_name; 
    2324 
     
    3839               if ($parent_theme) { 
    3940                    $this->parent_theme = path::real($this->core->blog->themes_path.'/'.$parent_theme); 
     41                    $this->parent_name = $parent_theme; 
    4042               } 
    4143               $tplset = $this->core->themes->moduleInfo($this->core->blog->settings->system->theme,'tplset'); 
     
    7880               } 
    7981               $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) : ''); 
    8286          } else { 
    8387               foreach ($files as $k => $v) 
Note: See TracChangeset for help on using the changeset viewer.

Sites map