diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:06:30 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 01:05:43 -0500 |
commit | e3dfb09aec084fc6bd119309ce949eaab714eae7 (patch) | |
tree | adff790795bcf713dab31e7c537753a3c4cf62b8 /web/html | |
parent | 05bf00c441283bb4267e328bf463c83745fec22b (diff) |
Re-brand to clarify that the software is aurweb; the instance is the AUR.
Diffstat (limited to 'web/html')
-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 |
5 files changed, 6 insertions, 6 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 |