Changeset 376

Show
Ignore:
Timestamp:
04/27/06 21:25:27 (3 years ago)
Author:
mike
Message:

+ HTML checkboxes fix for Opera

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/admin/plog-options.php

    r372 r376  
    178178 
    179179                                        $output .= 
    180                             '<input type="checkbox" name="comments_notify" value="1" '.$checked.'/> 
     180                            '<input type="checkbox" name="comments_notify" value="1" '.$checked.' /> 
    181181                        </td> 
    182182                    </tr> 
     
    188188 
    189189                                        $output .= 
    190                             '<input type="checkbox" name="comments_moderate" value="1" '.$checked.'/> 
     190                            '<input type="checkbox" name="comments_moderate" value="1" '.$checked.' /> 
    191191                        </td> 
    192192                    </tr> 
     
    328328 
    329329                        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.' /> 
    331331 
    332332                        </td> 
     
    337337                     
    338338                    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.' />'; 
    340340                     
    341341                    $output .= ' 
     
    359359                     
    360360                    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.' />'; 
    362362                     
    363363                    $output .= ' 
     
    386386                                                                        if ($config['allow_dl'] == 1) $checked = "checked"; else $checked = ""; 
    387387 
    388                         $output .= '<input type="checkbox" name="allow_dl" value="1" '.$checked.'/> 
     388                        $output .= '<input type="checkbox" name="allow_dl" value="1" '.$checked.' /> 
    389389                        </td> 
    390390                    </tr> 
     
    396396 
    397397                                        $output .= 
    398                             '<input type="checkbox" name="allow_comments" value="1" '.$checked.'/> 
     398                            '<input type="checkbox" name="allow_comments" value="1" '.$checked.' /> 
    399399                        </td> 
    400400                    </tr> 
     
    407407 
    408408                                        $output .= 
    409                             '<input type="checkbox" name="allow_print" value="1" '.$checked.'/> 
     409                            '<input type="checkbox" name="allow_print" value="1" '.$checked.' /> 
    410410                        </td> 
    411411                    </tr> 
     
    425425 
    426426                                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.' />'; 
    428428                                } else { 
    429429                                        $output .= ".htaccess is not writable, please check permissions";