Changeset 376
- Timestamp:
- 04/27/06 21:25:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/admin/plog-options.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/plog-options.php
r372 r376 178 178 179 179 $output .= 180 '<input type="checkbox" name="comments_notify" value="1" '.$checked.' />180 '<input type="checkbox" name="comments_notify" value="1" '.$checked.' /> 181 181 </td> 182 182 </tr> … … 188 188 189 189 $output .= 190 '<input type="checkbox" name="comments_moderate" value="1" '.$checked.' />190 '<input type="checkbox" name="comments_moderate" value="1" '.$checked.' /> 191 191 </td> 192 192 </tr> … … 328 328 329 329 if ($config['square_thumbs'] == 1) $checked = "checked"; else $checked = ""; 330 $output .= '<input type="checkbox" name="square_thumbs" value="1" '.$checked.' />330 $output .= '<input type="checkbox" name="square_thumbs" value="1" '.$checked.' /> 331 331 332 332 </td> … … 337 337 338 338 if (!empty($config['enable_thumb_nav'])) $checked = "checked"; else $checked = ""; 339 $output .= '<input type="checkbox" name="enable_thumb_nav" value="1" '.$checked.' />';339 $output .= '<input type="checkbox" name="enable_thumb_nav" value="1" '.$checked.' />'; 340 340 341 341 $output .= ' … … 359 359 360 360 if (!empty($config['allow_fullpic'])) $checked = "checked"; else $checked = ""; 361 $output .= '<input type="checkbox" name="allow_fullpic" value="1" '.$checked.' />';361 $output .= '<input type="checkbox" name="allow_fullpic" value="1" '.$checked.' />'; 362 362 363 363 $output .= ' … … 386 386 if ($config['allow_dl'] == 1) $checked = "checked"; else $checked = ""; 387 387 388 $output .= '<input type="checkbox" name="allow_dl" value="1" '.$checked.' />388 $output .= '<input type="checkbox" name="allow_dl" value="1" '.$checked.' /> 389 389 </td> 390 390 </tr> … … 396 396 397 397 $output .= 398 '<input type="checkbox" name="allow_comments" value="1" '.$checked.' />398 '<input type="checkbox" name="allow_comments" value="1" '.$checked.' /> 399 399 </td> 400 400 </tr> … … 407 407 408 408 $output .= 409 '<input type="checkbox" name="allow_print" value="1" '.$checked.' />409 '<input type="checkbox" name="allow_print" value="1" '.$checked.' /> 410 410 </td> 411 411 </tr> … … 425 425 426 426 if (is_writable($htaccess_file)) { 427 $output .= '<input type="checkbox" name="use_mod_rewrite" value="1" '.$checked.' />';427 $output .= '<input type="checkbox" name="use_mod_rewrite" value="1" '.$checked.' />'; 428 428 } else { 429 429 $output .= ".htaccess is not writable, please check permissions";
