diff options
Diffstat (limited to 'web/html/account.php')
-rw-r--r-- | web/html/account.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/web/html/account.php b/web/html/account.php index ca05d1ac..fe1a45fc 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -8,12 +8,12 @@ include_once('acctfuncs.inc.php'); # access Account specific functions set_lang(); # this sets up the visitor's language check_sid(); # see if they're still logged in -html_header(__('Accounts')); +html_header(_('Accounts')); # Main page processing here # echo "<div class=\"pgbox\">\n"; -echo " <div class=\"pgboxtitle\"><span class=\"f3\">".__("Accounts")."</span></div>\n"; +echo " <div class=\"pgboxtitle\"><span class=\"f3\">"._("Accounts")."</span></div>\n"; echo " <div class=\"pgboxbody\">\n"; $action = in_request("Action"); @@ -38,7 +38,7 @@ if (isset($_COOKIE["AURSID"])) { } else { # a non-privileged user is trying to access the search page # - print __("You are not allowed to access this area.")."<br />\n"; + print _("You are not allowed to access this area.")."<br />\n"; } } elseif ($action == "DisplayAccount") { @@ -50,7 +50,7 @@ if (isset($_COOKIE["AURSID"])) { $q.= "AND Users.ID = ".intval(in_request("ID")); $result = db_query($q, $dbh); if (!mysql_num_rows($result)) { - print __("Could not retrieve information for the specified user."); + print _("Could not retrieve information for the specified user."); } else { $row = mysql_fetch_assoc($result); @@ -58,7 +58,7 @@ if (isset($_COOKIE["AURSID"])) { # double check to make sure logged in user can edit this account # if ($atype == "User" || ($atype == "Trusted User" && $row["AccountType"] == "Developer")) { - print __("You do not have permission to edit this account."); + print _("You do not have permission to edit this account."); } else { display_account_form($atype, "UpdateAccount", $row["Username"], @@ -77,7 +77,7 @@ if (isset($_COOKIE["AURSID"])) { $q.= "AND Users.ID = ".intval(in_request("ID")); $result = db_query($q, $dbh); if (!mysql_num_rows($result)) { - print __("Could not retrieve information for the specified user."); + print _("Could not retrieve information for the specified user."); } else { $row = mysql_fetch_assoc($result); display_account_info($row["Username"], @@ -99,7 +99,7 @@ if (isset($_COOKIE["AURSID"])) { if ($atype == "Trusted User" || $atype == "Developer") { # display the search page if they're a TU/dev # - print __("Use this form to search existing accounts.")."<br />\n"; + print _("Use this form to search existing accounts.")."<br />\n"; search_accounts_form(); } else { @@ -114,16 +114,16 @@ if (isset($_COOKIE["AURSID"])) { $q.= mysql_real_escape_string($_COOKIE["AURSID"])."'"; $result = db_query($q, $dbh); if (!mysql_num_rows($result)) { - print __("Could not retrieve information for the specified user."); + print _("Could not retrieve information for the specified user."); } else { $row = mysql_fetch_assoc($result); # don't need to check if they have permissions, this is a # normal user editing themselves. # - print __("Use this form to update your account."); + print _("Use this form to update your account."); print "<br />"; - print __("Leave the password fields blank to keep your same password."); + print _("Leave the password fields blank to keep your same password."); display_account_form($atype, "UpdateAccount", $row["Username"], $row["AccountType"], $row["Suspended"], $row["Email"], "", "", $row["RealName"], $row["LangPreference"], @@ -136,7 +136,7 @@ if (isset($_COOKIE["AURSID"])) { # visitor is not logged in # if ($action == "AccountInfo") { - print __("You must log in to view user information."); + print _("You must log in to view user information."); } elseif ($action == "NewAccount") { # process the form input for creating a new account # @@ -148,7 +148,7 @@ if (isset($_COOKIE["AURSID"])) { } else { # display the account request form # - print __("Use this form to create an account."); + print _("Use this form to create an account."); display_account_form("", "NewAccount"); } } |