From 1f5bc83d794906c1b88dde20e107363cf2f71c17 Mon Sep 17 00:00:00 2001
From: natrak <>
Date: Sun, 1 Apr 2001 21:22:33 +0000
Subject: Just a minor adjustment to tanslate \n to
in account_user() for
bio and sig.
---
account.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/account.php b/account.php
index 7b698c9f0..bf5986610 100644
--- a/account.php
+++ b/account.php
@@ -236,8 +236,8 @@ function account_user($uname) {
$output .= "
". t("Username") .": | $user->userid |
\n";
$output .= " ". t("E-mail") .": | ". format_email($user->fake_email) ." |
\n";
$output .= " ". t("Homepage") .": | ". format_url($user->url) ." |
\n";
- $output .= " ". t("Bio") .": | ". check_output($user->bio) ." |
\n";
- $output .= " ". t("Signature") .": | ". check_output($user->signature) ." |
\n";
+ $output .= " ". t("Bio") .": | ". check_output($user->bio, 1) ." |
\n";
+ $output .= " ". t("Signature") .": | ". check_output($user->signature, 1) ." |
\n";
$output .= "\n";
// Display account information:
--
cgit v1.2.3