Changeset 481 for trunk/plugins
- Timestamp:
- 06/09/07 21:23:54 (18 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/altarchive.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/altarchive.php
r463 r481 127 127 $output .= "<td><select name=\"altarchive_showdefaultcss\">"; 128 128 $output .= "<option value=\"1\""; 129 if ( $this->_settings["altarchive_showdefaultcss"])129 if (array_key_exists("altarchive_showdefaultcss", $this->_settings) && $this->_settings["altarchive_showdefaultcss"] == 1) 130 130 $output .= " selected=\"selected\""; 131 131 $output .= ">".gettext("yes")."</option>"; 132 132 $output .= "<option value=\"0\""; 133 if (! $this->_settings["altarchive_showdefaultcss"])133 if (!array_key_exists("altarchive_showdefaultcss", $this->_settings) || array_key_exists("altarchive_showdefaultcss", $this->_settings) && $this->_settings["altarchive_showdefaultcss"] == 0) 134 134 $output .= " selected=\"selected\""; 135 135 $output .= ">".gettext("no")."</option>";
