summaryrefslogtreecommitdiff
path: root/forum
diff options
context:
space:
mode:
authordeva <deva>2008-10-26 12:58:38 +0000
committerdeva <deva>2008-10-26 12:58:38 +0000
commita73f78c1d1a498b5ff250bc731744a4f52a69c8f (patch)
tree605c222c60edaa4092ed42aa7faf06d13c60ca40 /forum
parentb25d356c95196d407a7631f47ccdaeaed972b964 (diff)
Changed essential default to 'on'.
Diffstat (limited to 'forum')
-rw-r--r--forum/utils/addressbook.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/forum/utils/addressbook.php b/forum/utils/addressbook.php
index 29b0fb0..9fe3e9c 100644
--- a/forum/utils/addressbook.php
+++ b/forum/utils/addressbook.php
@@ -14,7 +14,7 @@ function form($cid,
$email2 = "",
$url = "",
$url2 = "",
- $essential = "",
+ $essential = "on",
$notes = "")
{
?>
@@ -30,7 +30,7 @@ function form($cid,
Email2: <input name="email2" value="<?php echo $email2;?>"><br/>
URL: <input name="url" value="<?php echo $url;?>"><br/>
URL2: <input name="url2" value="<?php echo $url2;?>"><br/>
- Essential: <input type="checkbox" name="essential" <?php if($essential == "on") echo " checked";?>><br/>
+ Essential: <input type="checkbox" name="essential"<?php if($essential == "on") echo " checked";?>><br/>
Notes:<br/>
<textarea name="notes" cols="60" rows="10"><?php echo $notes;?></textarea><br/>
<button type="submit"><?php echo $buttontext; ?></button>