Allow underscores in nicknames by changing id used in forms, add more labels for...
[squirrelmail.git] / templates / default / addrbook_addedit.tpl
index f03dc439424dfc53acd66b553d642d6fe8f19e5c..44f728c984aa7c2932c4a92ffc3fbf7d9c7ef7b3 100644 (file)
@@ -5,6 +5,7 @@
  * Display the form elements to add/edit an entry in the address book
  * 
  * The following variables are available in this template:
+ *      $current_backend - integer containing backend currently displayed.
  *      $edit       - boolean TRUE if we are editing an existing address.
  *                    FALSE if the form is blank for adding a new address.
  *      $writable_backends - array of address book backends that can be written
@@ -39,7 +40,7 @@ $formname = $edit ? 'editaddr' : 'addaddr';
 <table cellspacing="0">
  <tr>
   <td class="header" colspan="2">
-   <?php echo $edit ? _("Update address") : _("Add to address book"); ?>
+   <?php echo $edit ? _("Update Address") : _("Add to Address Book"); ?>
   </td>
  </tr>
  <tr>
@@ -60,6 +61,7 @@ $formname = $edit ? 'editaddr' : 'addaddr';
     if (is_array($values['Email'])) {
         echo '<select name="'.$formname.'[email]" id="email">'."\n";
         foreach ($values['Email'] as $email) {
+//FIXME: htmlspecialchars should not be needed inside any template files - I think values are already sanitized by the time they get here
             echo '<option value="'.htmlspecialchars($email).'">'.htmlspecialchars($email).'</option>'."\n";
         }
         echo '</select>'."\n";
@@ -105,7 +107,10 @@ $formname = $edit ? 'editaddr' : 'addaddr';
    <select name="backend" id="backend">
     <?php
         foreach ($writable_backends as $id=>$name) {
-            echo '<option value="'.$id.'">'.htmlspecialchars($name).'</option>'."\n";
+//FIXME: htmlspecialchars should not be needed inside any template files - I think values are already sanitized by the time they get here
+            echo '<option value="' . $id
+               . ($current_backend == $id ? '" selected="selected"' : '"')
+               . '>' . htmlspecialchars($name) . '</option>' . "\n";
         }
     ?>
    </select>
@@ -120,7 +125,7 @@ $formname = $edit ? 'editaddr' : 'addaddr';
  <tr>
   <td colspan="2" class="addButton">
    <input type="hidden" name="new_bnum" value="<?php echo $current_backend; ?>" />
-   <input type="submit" value=<?php echo '"'.($edit ? _("Update address") : _("Add address")).'"'; ?> name="<?php echo $formname; ?>[SUBMIT]" />
+   <input type="submit" value=<?php echo '"'.($edit ? _("Update Address") : _("Add Address")).'"'; ?> name="<?php echo $formname; ?>[SUBMIT]" />
   </td>
  </tr>
 </table>