diff options
author | Michael Tänzer <neo@nhng.de> | 2012-12-10 01:34:35 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2012-12-10 01:34:35 +0100 |
commit | 46af74ccb903b92ac6de768934a3faf8d2da45ea (patch) | |
tree | 341497556baac356e6aaeb5d14f8ba7b38ea29b2 | |
parent | 4fb198eb799295a1dc849e1313ca2f465e6d18a9 (diff) | |
parent | e8bdb071a9c4bc1bffc1cf06b789fa5b37a8dbe9 (diff) | |
download | cacert-devel-46af74ccb903b92ac6de768934a3faf8d2da45ea.tar.gz cacert-devel-46af74ccb903b92ac6de768934a3faf8d2da45ea.tar.xz cacert-devel-46af74ccb903b92ac6de768934a3faf8d2da45ea.zip |
Merge remote-tracking branch 'origin/bug-977' into release
-rw-r--r-- | pages/account/49.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/pages/account/49.php b/pages/account/49.php index a5345e6..0218fa0 100644 --- a/pages/account/49.php +++ b/pages/account/49.php @@ -58,7 +58,11 @@ $row = mysql_fetch_assoc($res); $_GET['userid'] = intval($row['id']); } else { - printf(_("No personal domains found matching %s"), sanitizeHTML($domain)); + ?><table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> + <tr> + <td colspan="5" class="title"><?printf(_("No personal domains found matching %s"), sanitizeHTML($domain));?></td> + </tr> + </table><br><br><? } $query = "select `orgid`,`domain`,`id` from `orgdomains` where `domain` like '$domainsearch' or `id`='$domain' limit 100"; @@ -90,7 +94,11 @@ $row = mysql_fetch_assoc($res); $_GET['userid'] = intval($row['id']); } else { - printf(_("No organisational domains found matching %s"), sanitizeHTML($domain)); + ?><table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> + <tr> + <td colspan="5" class="title"><?printf(_("No organisational domains found matching %s"), sanitizeHTML($domain));?></td> + </tr> + </table><br><br><? } } |