Changeset 2216:91f485a16187 for admin/blog_theme.php
- Timestamp:
- 10/02/13 17:47:15 (12 years ago)
- Branch:
- dcRepo
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog_theme.php
r2215 r2216 16 16 17 17 # -- "First time" settings setup -- 18 if ($core->blog->settings->system-> repository_theme_url === null) {18 if ($core->blog->settings->system->store_theme_url === null) { 19 19 $core->blog->settings->system->put( 20 ' repository_theme_url', 'http://update.dotaddict.org/dc2/themes.xml', 'string', 'Themes XML feed location', true, true20 'store_theme_url', 'http://update.dotaddict.org/dc2/themes.xml', 'string', 'Themes XML feed location', true, true 21 21 ); 22 22 } … … 30 30 $core->themes, 31 31 $core->blog->themes_path, 32 $core->blog->settings->system-> repository_theme_url32 $core->blog->settings->system->store_theme_url 33 33 ); 34 34 $list::$distributed_modules = array( … … 132 132 133 133 # Updated modules from repo 134 $modules = $list-> repository->get(true);134 $modules = $list->store->get(true); 135 135 if (!empty($modules)) { 136 136 echo … … 202 202 # New modules from repo 203 203 $search = $list->getSearchQuery(); 204 $modules = $search ? $list-> repository->search($search) : $list->repository->get();204 $modules = $search ? $list->store->search($search) : $list->store->get(); 205 205 206 206 if (!empty($search) || !empty($modules)) {
Note: See TracChangeset
for help on using the changeset viewer.