Changeset 1500 for trunk/gregarius/cls
- Timestamp:
- 06/16/06 11:32:10 (2 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/cls/wrappers/header.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/cls/wrappers/header.php
r1441 r1500 137 137 function rss_header_logininfo() { 138 138 139 $ret = "< spanid=\"loginfo\">\n";139 $ret = "<div id=\"loginfo\">\n"; 140 140 141 141 if (rss_user_level() > RSS_USER_LEVEL_NOLEVEL) { … … 145 145 $ret .= LBL_NOT_LOGGED_IN 146 146 ." | <a href=\"#\" onclick=\"miniloginform(); return false;\">".LBL_LOG_IN."</a>"; 147 $ret .= "< spanstyle=\"display:none\" id=\"loginformcontainer\">"147 $ret .= "<div style=\"display:none\" id=\"loginformcontainer\">" 148 148 . '<form ' . 'onsubmit="return loginHandler();" ' . 'method="post" action="'.getPath().'">' 149 . '< input style=" width:50px;" name="username" id="username" type="text" />'150 . '< input style=" width:50px;" name="password" id="password" type="password" />'151 . '< input type="submit" value="'.LBL_LOG_IN.'" />'149 . '<div style="display:inline"><input style=" width:50px;" name="username" id="username" type="text" /></div>' 150 . '<div style="display:inline"><input style=" width:50px;" name="password" id="password" type="password" /></div>' 151 . '<div style="display:inline"><input type="submit" value="'.LBL_LOG_IN.'" /></div>' 152 152 . '</form>' 153 ."</ span>\n";153 ."</div>\n"; 154 154 } 155 $ret .= "</ span>\n";155 $ret .= "</div>\n"; 156 156 return $ret; 157 157 }
