Changeset 1865 for trunk/admin/configuration.php
- Timestamp:
- Feb 28, 2007, 1:16:53 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/configuration.php
r1763 r1865 159 159 } 160 160 161 if ( $page['section']=='comments' and !is_adviser() ) 162 { 163 if (isset($_POST['falsify']) 164 and isset($_POST['cat_true']) 165 and count($_POST['cat_true']) > 0) 166 { 167 $query = ' 168 UPDATE '.CATEGORIES_TABLE.' 169 SET commentable = \'false\' 170 WHERE id IN ('.implode(',', $_POST['cat_true']).') 171 ;'; 172 pwg_query($query); 173 } 174 if (isset($_POST['trueify']) 175 and isset($_POST['cat_false']) 176 and count($_POST['cat_false']) > 0) 177 { 178 $query = ' 179 UPDATE '.CATEGORIES_TABLE.' 180 SET commentable = \'true\' 181 WHERE id IN ('.implode(',', $_POST['cat_false']).') 182 ;'; 183 pwg_query($query); 184 } 185 } 186 161 187 //----------------------------------------------------- template initialization 162 188 $template->set_filenames( array('config'=>'admin/configuration.tpl') ); … … 227 253 ); 228 254 } 255 256 $query_true = ' 257 SELECT id,name,uppercats,global_rank 258 FROM '.CATEGORIES_TABLE.' 259 WHERE commentable = \'true\' 260 ;'; 261 $query_false = ' 262 SELECT id,name,uppercats,global_rank 263 FROM '.CATEGORIES_TABLE.' 264 WHERE commentable = \'false\' 265 ;'; 266 display_select_cat_wrapper($query_true,array(),'comments.category_option_true'); 267 display_select_cat_wrapper($query_false,array(),'comments.category_option_false'); 229 268 break; 230 269 }
Note: See TracChangeset
for help on using the changeset viewer.