diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/html/account.php | 2 | ||||
-rw-r--r-- | web/html/logout.php | 4 | ||||
-rw-r--r-- | web/html/packages.php | 2 | ||||
-rw-r--r-- | web/html/passreset.php | 2 | ||||
-rw-r--r-- | web/html/register.php | 2 | ||||
-rw-r--r-- | web/lib/acctfuncs.inc.php | 4 | ||||
-rw-r--r-- | web/lib/aur.inc.php | 14 | ||||
-rw-r--r-- | web/lib/aurjson.class.php | 2 | ||||
-rw-r--r-- | web/lib/stats.inc.php | 2 | ||||
-rw-r--r-- | web/template/template.phps | 2 |
10 files changed, 18 insertions, 18 deletions
diff --git a/web/html/account.php b/web/html/account.php index 2892f04..2ca8723 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once('aur.inc.php'); # access AUR common functions +include_once('aur.inc.php'); # access aurweb common functions include_once('acctfuncs.inc.php'); # access Account specific functions set_lang(); # this sets up the visitor's language diff --git a/web/html/logout.php b/web/html/logout.php index 5e8e8f4..d173773 100644 --- a/web/html/logout.php +++ b/web/html/logout.php @@ -2,8 +2,8 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once("aur.inc.php"); # access AUR common functions -include_once("acctfuncs.inc.php"); # access AUR common functions +include_once("aur.inc.php"); # access aurweb common functions +include_once("acctfuncs.inc.php"); # access aurweb common functions # if they've got a cookie, log them out - need to do this before diff --git a/web/html/packages.php b/web/html/packages.php index 1b89278..ed4b86a 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once("aur.inc.php"); # access AUR common functions +include_once("aur.inc.php"); # access aurweb common functions set_lang(); # this sets up the visitor's language include_once('pkgfuncs.inc.php'); # package specific functions check_sid(); # see if they're still logged in diff --git a/web/html/passreset.php b/web/html/passreset.php index cb2f6bc..ab766ba 100644 --- a/web/html/passreset.php +++ b/web/html/passreset.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once("aur.inc.php"); # access AUR common functions +include_once("aur.inc.php"); # access aurweb common functions set_lang(); # this sets up the visitor's language check_sid(); # see if they're still logged in diff --git a/web/html/register.php b/web/html/register.php index 6c6d52e..13b9ad5 100644 --- a/web/html/register.php +++ b/web/html/register.php @@ -2,7 +2,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include_once('aur.inc.php'); # access AUR common functions +include_once('aur.inc.php'); # access aurweb common functions include_once('acctfuncs.inc.php'); # access Account specific functions set_lang(); # this sets up the visitor's language diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php index 172b962..6bc6646 100644 --- a/web/lib/acctfuncs.inc.php +++ b/web/lib/acctfuncs.inc.php @@ -41,7 +41,7 @@ function html_format_pgp_fingerprint($fingerprint) { /** * Loads the account editing form, with any values that are already saved * - * @global array $SUPPORTED_LANGS Languages that are supported by the AUR + * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance * @param string $A Form to use, either UpdateAccount or NewAccount * @param string $U The username to display * @param string $T The account type of the displayed user @@ -76,7 +76,7 @@ function display_account_form($A,$U="",$T="",$S="",$E="",$H="",$P="",$C="",$R="" /** * Process information given to new/edit account form * - * @global array $SUPPORTED_LANGS Languages that are supported by the AUR + * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance * @param string $TYPE Either "edit" for editing or "new" for registering an account * @param string $A Form to use, either UpdateAccount or NewAccount * @param string $U The username for the account diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index 9015ae8..ac51fb9 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -345,11 +345,11 @@ function uid_from_sid($sid="") { } /** - * Common AUR header displayed on all pages + * Common aurweb header displayed on all pages * * @global string $LANG Language selected by the visitor - * @global array $SUPPORTED_LANGS Languages that are supported by the AUR - * @param string $title Name of the AUR page to be displayed on browser + * @global array $SUPPORTED_LANGS Languages that are supported by the aurweb instance + * @param string $title Name of the aurweb page to be displayed on browser * * @return void */ @@ -362,9 +362,9 @@ function html_header($title="", $details=array()) { } /** - * Common AUR footer displayed on all pages + * Common aurweb footer displayed on all pages * - * @param string $ver The AUR version + * @param string $ver The aurweb version * * @return void */ @@ -702,9 +702,9 @@ function bound($n, $min, $max) { } /** - * Return the URL of the AUR root + * Return the URL of the aurweb root * - * @return string The URL of the AUR root + * @return string The URL of the aurweb root */ function aur_location() { $location = config_get('options', 'aur_location'); diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php index 3bd9179..e12d50d 100644 --- a/web/lib/aurjson.class.php +++ b/web/lib/aurjson.class.php @@ -3,7 +3,7 @@ include_once("aur.inc.php"); /* - * This class defines a remote interface for fetching data from the AUR using + * This class defines a remote interface for fetching data from aurweb using * JSON formatted elements. * * @package rpc diff --git a/web/lib/stats.inc.php b/web/lib/stats.inc.php index 80619fe..49f6886 100644 --- a/web/lib/stats.inc.php +++ b/web/lib/stats.inc.php @@ -57,7 +57,7 @@ function user_table($userid) { * @return void */ function general_stats_table() { - # AUR statistics + # aurweb statistics $q = "SELECT COUNT(*) FROM PackageBases WHERE PackagerUID IS NOT NULL"; $pkg_count = db_cache_value($q, 'pkg_count'); diff --git a/web/template/template.phps b/web/template/template.phps index 4f8117c..c395c2a 100644 --- a/web/template/template.phps +++ b/web/template/template.phps @@ -4,7 +4,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); -include("aur.inc.php"); # access AUR common functions +include("aur.inc.php"); # access aurweb common functions set_lang(); # this sets up the visitor's language check_sid(); # see if they're still logged in html_header(); # print out the HTML header |