Changeset 832:5891fb6fe292 for themes/ductile/_config.php
- Timestamp:
- 05/22/12 15:54:18 (13 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
themes/ductile/_config.php
r810 r832 13 13 l10n::set(dirname(__FILE__).'/locales/'.$_lang.'/admin'); 14 14 15 $img_url = $core->blog->settings->system->themes_url.'/'.$core->blog->settings->system->theme.'/img/'; 16 $img_url = http::concatURL($core->blog->url,$img_url); 15 if (preg_match('#^http(s)?://#',$core->blog->settings->system->themes_url)) { 16 $img_url = http::concatURL($core->blog->settings->system->themes_url,'/'.$core->blog->settings->system->theme.'/img/'); 17 } else { 18 $img_url = http::concatURL($core->blog->url,$core->blog->settings->system->themes_url.'/'.$core->blog->settings->system->theme.'/img/'); 19 } 17 20 $img_path = dirname(__FILE__).'/img/'; 18 21
Note: See TracChangeset
for help on using the changeset viewer.