Fix login error for users with no theme
[squirrelmail.git] / src / options_identities.php
index 7a49817cb54cc8aeb8425faea980e159fb7bc705..087cc0e50556752d4f2b05a869514fba5700cc54 100644 (file)
@@ -13,6 +13,9 @@
  * @since 1.1.3
  */
 
+/** This is the options_identities page */
+define('PAGE_NAME', 'options_identities');
+
 /**
  * Include the SquirrelMail initialization file.
  */
@@ -196,7 +199,7 @@ function sti_input( $title, $name, $data, $bgcolor ) {
     $str = '';
     $str .= '<tr' . $bgcolor . ">\n";
     $str .= '  <td style="white-space: nowrap;text-align:right;">' . $title . ' </td>' . "\n";
-    $str .= '  <td> <input type="text" name="' . $name . '" size="50" value="'. htmlspecialchars($data) . '"> </td>' . "\n";
+    $str .= '  <td> <input type="text" name="' . $name . '" size="50" value="'. htmlspecialchars($data) . '" /> </td>' . "\n";
     $str .= '</tr>';
 
     return $str;
@@ -226,4 +229,3 @@ function sti_textarea( $title, $name, $data, $bgcolor ) {
 
 }
 
-?>