Changeset 2216:91f485a16187 for admin/plugins.php
- Timestamp:
- 10/02/13 17:47:15 (12 years ago)
- Branch:
- dcRepo
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/plugins.php
r2215 r2216 21 21 ); 22 22 } 23 if ($core->blog->settings->system-> repository_plugin_url === null) {23 if ($core->blog->settings->system->store_plugin_url === null) { 24 24 $core->blog->settings->system->put( 25 ' repository_plugin_url', 'http://update.dotaddict.org/dc2/plugins.xml', 'string', 'Plugins XML feed location', true, true25 'store_plugin_url', 'http://update.dotaddict.org/dc2/plugins.xml', 'string', 'Plugins XML feed location', true, true 26 26 ); 27 27 } … … 31 31 $core->plugins, 32 32 DC_PLUGINS_ROOT, 33 $core->blog->settings->system-> repository_plugin_url33 $core->blog->settings->system->store_plugin_url 34 34 ); 35 35 … … 156 156 157 157 # Updated modules from repo 158 $modules = $list-> repository->get(true);158 $modules = $list->store->get(true); 159 159 if (!empty($modules)) { 160 160 echo … … 225 225 # New modules from repo 226 226 $search = $list->getSearchQuery(); 227 $modules = $search ? $list-> repository->search($search) : $list->repository->get();227 $modules = $search ? $list->store->search($search) : $list->store->get(); 228 228 229 229 if (!empty($search) || !empty($modules)) {
Note: See TracChangeset
for help on using the changeset viewer.