diff options
Diffstat (limited to 'pages/account/49.php')
-rw-r--r-- | pages/account/49.php | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/pages/account/49.php b/pages/account/49.php index 688b9a4..0218fa0 100644 --- a/pages/account/49.php +++ b/pages/account/49.php @@ -34,7 +34,7 @@ if(mysql_num_rows($res) >= 1) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> - <td colspan="5" class="title"><?=_("Select Specific Account Details")?></td> + <td colspan="5" class="title"><?=_("Select Specific User Account Details")?></td> </tr> <? while($row = mysql_fetch_assoc($res)) @@ -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"; @@ -66,7 +70,7 @@ if(mysql_num_rows($res) >= 1) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> - <td colspan="5" class="title"><?=_("Select Specific Account Details")?></td> + <td colspan="5" class="title"><?=_("Select Specific Organisation Account Details")?></td> </tr> <? while($row = mysql_fetch_assoc($res)) @@ -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><? } } |