summaryrefslogtreecommitdiff
path: root/pages/account/58.php
diff options
context:
space:
mode:
authorMichael Tänzer <neo@nhng.de>2014-04-11 16:38:41 +0200
committerMichael Tänzer <neo@nhng.de>2014-04-11 16:38:41 +0200
commit07891c06fac608d47c72b0faf774beb8bcbda550 (patch)
treefaf75035bd9e1be80f6c2404a94e95bbd2638071 /pages/account/58.php
parented5cb34b88aa4e3c664db86ae65f475895720bfa (diff)
downloadcacert-devel-07891c06fac608d47c72b0faf774beb8bcbda550.tar.gz
cacert-devel-07891c06fac608d47c72b0faf774beb8bcbda550.tar.xz
cacert-devel-07891c06fac608d47c72b0faf774beb8bcbda550.zip
bug 1138: Correct spelling / meaning
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/account/58.php')
-rw-r--r--pages/account/58.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/account/58.php b/pages/account/58.php
index 1f6b1a0..af26b70 100644
--- a/pages/account/58.php
+++ b/pages/account/58.php
@@ -23,7 +23,7 @@ if ($_SESSION['profile']['admin'] != 1 || !array_key_exists('userid',$_REQUEST)
$query = "select `users`.`fname`, `users`.`mname`, `users`.`lname` from `users` where `id`='$user_id' and `users`.`deleted`=0";
$res = mysql_query($query);
if(mysql_num_rows($res) != 1){
- echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!");
+ echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are afoot!");
} else {
if ($row = mysql_fetch_assoc($res)){
$username=sanitizeHTML($row['fname']).' '.sanitizeHTML($row['mname']).' '.sanitizeHTML($row['lname']);
@@ -54,7 +54,7 @@ if ($_SESSION['profile']['admin'] != 1 || !array_key_exists('userid',$_REQUEST)
}
?></table>
<? }else{
- echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!");
+ echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are afoot!");
}
}
}