HTML login: fixed bad submit under IE
authorDan
Fri, 25 Sep 2009 14:18:20 -0400
changeset 1119 2e045975fc65
parent 1118 e26e74d80c15
child 1120 55b5911cd39e
HTML login: fixed bad submit under IE
includes/clientside/css/enano-shared.css
plugins/SpecialUserFuncs.php
--- a/includes/clientside/css/enano-shared.css	Sun Sep 20 04:00:07 2009 -0400
+++ b/includes/clientside/css/enano-shared.css	Fri Sep 25 14:18:20 2009 -0400
@@ -484,6 +484,8 @@
   display: block;
   text-decoration: none;
   padding: 3px;
+  border-radius: 5px 0 0 5px;
+  -moz-border-radius: 5px 0 0 5px;
 }
 
 span.pm_link_selected {
@@ -500,11 +502,17 @@
   height: 10px;
 }
 
+span#pm_btn_compose {
+  margin-top: 5px;
+}
+
 div.pm_main {
   background-color: #c3d9ff;
   padding: 5px 5px 3px 5px;
   margin-left: 12em;
   min-height: 16em;
+  border-radius: 5px;
+  -moz-border-radius: 5px;
 }
 
 div.pm_main_trash {
--- a/plugins/SpecialUserFuncs.php	Sun Sep 20 04:00:07 2009 -0400
+++ b/plugins/SpecialUserFuncs.php	Fri Sep 25 14:18:20 2009 -0400
@@ -373,7 +373,10 @@
          ?>
          
          <tr>
-           <th colspan="3" style="text-align: center" class="subhead"><input type="submit" name="login" value="Log in" tabindex="<?php echo ( $level <= USER_LEVEL_MEMBER ) ? '4' : '2'; ?>" /></th>
+           <th colspan="3" style="text-align: center" class="subhead">
+             <input type="hidden" name="login" value="true" />
+             <input type="submit" value="Log in" tabindex="<?php echo ( $level <= USER_LEVEL_MEMBER ) ? '4' : '2'; ?>" />
+           </th>
          </tr>
       </table>
     </div>