summaryrefslogtreecommitdiff
path: root/account.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2000-06-22 21:41:01 +0000
committerDries Buytaert <dries@buytaert.net>2000-06-22 21:41:01 +0000
commit829b55c535832e84685340f8b02b91f637b682c9 (patch)
tree9b0b419a0b6c945ad873be2d94a66917011b6d5c /account.php
parentde707b67970fd7e99ec6a70c67ce76309cfec0d5 (diff)
downloadbrdo-829b55c535832e84685340f8b02b91f637b682c9.tar.gz
brdo-829b55c535832e84685340f8b02b91f637b682c9.tar.bz2
* Small bugfix for `Display mode'.
Diffstat (limited to 'account.php')
-rw-r--r--account.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/account.php b/account.php
index f94bc01cd..bf6ddbbed 100644
--- a/account.php
+++ b/account.php
@@ -208,7 +208,7 @@ switch ($op) {
$output .= "<I>Changes the look and feel of the site.</I><P>\n";
$output .= "<B>Maximum number of stories:</B><BR>\n";
$output .= "<INPUT NAME=\"edit[storynum]\" MAXLENGTH=3 SIZE=3 VALUE=\"$user->storynum\"><P>\n";
- $options .= "<OPTION VALUE=\"nested\"". ($user->umode == 'nested' ? " SELECTED" : "") .">Nested</OPTION>";
+ $options = "<OPTION VALUE=\"nested\"". ($user->umode == 'nested' ? " SELECTED" : "") .">Nested</OPTION>";
$options .= "<OPTION VALUE=\"flat\"". ($user->umode == 'flat' ? " SELECTED" : "") .">Flat</OPTION>";
$options .= "<OPTION VALUE=\"threaded\"". ($user->umode == 'threaded' ? " SELECTED" : "") .">Threaded</OPTION>";
$output .= "<B>Display mode:</B><BR>\n";