Changeset 2607:2a4091ec08c4
- Timestamp:
- 12/08/13 16:56:45 (12 years ago)
- Branch:
- default
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/core/class.dc.themes.php
r2599 r2607 59 59 # Themes specifics properties 60 60 $properties = array_merge( 61 array('parent' => null, 'tplset' => 'mustek'),61 array('parent' => null, 'tplset' => DC_DEFAULT_TPLSET), 62 62 $properties, 63 63 array('permissions' => 'admin') // force themes perms -
inc/prepend.php
r2595 r2607 144 144 define('DC_DISTRIB_PLUGINS','aboutConfig,akismet,antispam,attachments,blogroll,blowupConfig,dclegacy,fairTrackbacks,importExport,maintenance,pages,pings,simpleMenu,tags,themeEditor,userPref,widgets'); 145 145 define('DC_DISTRIB_THEMES','blueSilence,blowupConfig,customCSS,default,ductile'); 146 define('DC_DEFAULT_TPLSET','mustek'); 146 147 147 148 if (!defined('DC_VENDOR_NAME')) { -
plugins/pages/_public.php
r2603 r2607 195 195 $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/default-templates/'.$tplset); 196 196 } else { 197 $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/default-templates/ mustek');197 $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/default-templates/'.DC_DEFAULT_TPLSET); 198 198 } 199 199 self::serveDocument('page.html'); -
plugins/tags/_public.php
r2603 r2607 86 86 $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/default-templates/'.$tplset); 87 87 } else { 88 $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/default-templates/ mustek');88 $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/default-templates/'.DC_DEFAULT_TPLSET); 89 89 } 90 90 } -
plugins/themeEditor/class.themeEditor.php
r2601 r2607 30 30 $this->default_theme = path::real($this->core->blog->themes_path.'/default'); 31 31 $this->user_theme = path::real($this->core->blog->themes_path.'/'.$this->core->blog->settings->system->theme); 32 $this->tplset_theme = DC_ROOT.'/inc/public/default-templates/'. 'mustek';32 $this->tplset_theme = DC_ROOT.'/inc/public/default-templates/'.DC_DEFAULT_TPLSET; 33 33 if (null !== $this->core->themes) { 34 34 $parent_theme = $this->core->themes->moduleInfo($this->core->blog->settings->system->theme,'parent');
Note: See TracChangeset
for help on using the changeset viewer.