Changeset 818
- Timestamp:
- 02/01/04 11:03:43 (5 years ago)
- Files:
-
- trunk/wp-admin/profile.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/profile.php
r674 r818 147 147 </p> 148 148 149 <p> <strong>First :</strong> <?php echo $profiledata->user_firstname ?> </p>150 151 <p> <strong>Last :</strong> <?php echo $profiledata->user_lastname ?> </p>149 <p> <strong>First name:</strong> <?php echo $profiledata->user_firstname ?> </p> 150 151 <p> <strong>Last name:</strong> <?php echo $profiledata->user_lastname ?> </p> 152 152 153 153 <p> <strong>Nickname:</strong> <?php echo $profiledata->user_nickname ?> </p> … … 156 156 </p> 157 157 158 <p> <strong> URL:</strong> <?php echo $profiledata->user_url ?> </p>158 <p> <strong>Website:</strong> <?php echo $profiledata->user_url ?> </p> 159 159 160 160 <p> <strong>ICQ:</strong> … … 201 201 202 202 <p align="center"> 203 <form>203 <form> 204 204 <input class="search" type="button" value="1" name="Close this window" /> 205 </form>205 </form> 206 206 </p> 207 207 </td></tr> … … 229 229 <div class="wrap"> 230 230 <form name="profile" id="profile" action="profile.php" method="post"> 231 <h2>Edit Your Profile</h2> 232 <p> 231 <p> 233 232 <input type="hidden" name="action" value="update" /> 234 233 <input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" /> 235 234 </p> 236 <p><strong> User ID:</strong> <?php echo $profiledata->ID?> | <strong>Level:</strong>235 <p><strong>Login:</strong> <?php echo $profiledata->user_login ?> | <strong>Level:</strong> 237 236 <?php echo $profiledata->user_level ?> | <strong>Posts:</strong> 238 237 <?php … … 240 239 echo $posts; 241 240 ?> 242 | <strong>Login:</strong> <?php echo $profiledata->user_login ?></p>241 </p> 243 242 <style type="text/css" media="screen"> 244 243 th { text-align: right; } … … 246 245 <table width="99%" border="0" cellspacing="2" cellpadding="3"> 247 246 <tr> 248 <th width="15%" scope="row">First :</th>247 <th width="15%" scope="row">First name:</th> 249 248 <td><input type="text" name="newuser_firstname" id="newuser_firstname" value="<?php echo $profiledata->user_firstname ?>" /></td> 250 249 </tr> 251 250 <tr> 252 <th scope="row">Last :</th>251 <th scope="row">Last name:</th> 253 252 <td><input type="text" name="newuser_lastname" id="newuser_lastname2" value="<?php echo $profiledata->user_lastname ?>" /></td> 254 253 </tr> 255 254 <tr> 256 <th scope="row"> Description:</th>255 <th scope="row">Profile:</th> 257 256 <td><textarea name="user_description" rows="5" id="textarea2" style="width: 99%; "><?php echo $profiledata->user_description ?></textarea></td> 258 257 </tr> … … 266 265 </tr> 267 266 <tr> 268 <th scope="row"> URI:</th>267 <th scope="row">Website:</th> 269 268 <td><input type="text" name="newuser_url" id="newuser_url2" value="<?php echo $profiledata->user_url ?>" /></td> 270 269 </tr> … … 317 316 <input class="search" type="submit" value="Update" name="submit" /></p> 318 317 </div> 319 </form>318 </form> 320 319 </div> 321 <?php if ($is_gecko ) { ?>320 <?php if ($is_gecko && $profiledata->user_level != 0) { ?> 322 321 <div class="wrap"> 323 322 <script language="JavaScript" type="text/javascript">
