Changeset 2316 for plugins/dcAdvancedCleaner/index.php
- Timestamp:
- 06/07/10 03:06:29 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcAdvancedCleaner/index.php
r2199 r2316 63 63 if (!isset($combo_funcs[$type])) return ''; 64 64 65 $s = dcAdvancedCleanerSettings($core);66 65 $rs = call_user_func($combo_funcs[$type],$core); 67 66 … … 86 85 $offline = in_array($v['key'],dcAdvancedCleaner::$dotclear[$type]); 87 86 88 if ($ s->dcAdvancedCleaner_dcproperty_hide && $offline) continue;87 if ($core->blog->settings->dcAdvancedCleaner->dcAdvancedCleaner_dcproperty_hide && $offline) continue; 89 88 90 89 echo … … 143 142 $action = isset($_POST['action']) ? $_POST['action'] : ''; 144 143 $type = isset($_POST['type']) ? $_POST['type'] : ''; 145 $s = dcAdvancedCleanerSettings($core);144 $s = $core->blog->settings->dcAdvancedCleaner; 146 145 147 146 # Combos … … 228 227 drawDcAdvancedCleanerLists($core,$part); 229 228 echo '</fieldset>'; 229 } 230 if ($s->dcAdvancedCleaner_dcproperty_hide) 231 { 232 echo '<p>'.__('Default values of Dotclear are hidden. You can change this in settings tab').'</p>'; 230 233 } 231 234 echo '</div>';
Note: See TracChangeset
for help on using the changeset viewer.