diff options
Diffstat (limited to 'forum/utils/profile.php')
-rw-r--r-- | forum/utils/profile.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/forum/utils/profile.php b/forum/utils/profile.php index ee47cb0..7f8372c 100644 --- a/forum/utils/profile.php +++ b/forum/utils/profile.php @@ -6,6 +6,7 @@ if($action == "update") { $current_user->name = $name; $current_user->email = $email; $current_user->avatar = $avatar; + $current_user->signature = $signature; if($password != "") { if($password == $password_confirm) { $current_user->password = sha1(md5($password)); @@ -34,6 +35,8 @@ while($avatar = readdir($dir)) { } ?> </select><br/> +Signature:<br/> +<textarea name="signature" cols="60" rows="2"><?php echo $current_user->signature ?></textarea><br/> <br/> <button type="submit">Update</button> </form> |