Project

General

Profile

« Previous | Next » 

Revision 1559

Added by Dietmar over 12 years ago

change quickSkin to alpha status, ATTANTION rename folder to quickSkin_alpha

View differences:

qx_options.php
22 22
      $keyindex  =  0;
23 23
      foreach ($param as $key => $value) {
24 24
        if ($key==$keyindex++ && is_numeric($key)) {
25
          $output  .=  '<option' . (($value == $default) ? '  selected' : '') . '>' . $value . '</option>';
25
          $output  .=  '<option' . (($value == $default) ? '  selected="selected"' : '') . '>' . $value . '</option>';
26 26
        } else {
27
          $output  .=  '<option value="' . $key . '"' . (($key == $default) ? '  selected' : '') . '>' . $value . '</option>';
27
          $output  .=  '<option value="' . $key . '"' . (($key == $default) ? '  selected="selected"' : '') . '>' . $value . '</option>';
28 28
        }
29 29
      }
30 30
    }
31 31
    return $output;
32 32
  }
33

  
34
?>

Also available in: Unified diff