mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
rename *.inc files to *.inc.php and adjust imports and references
Lukas: Add note to "UPGRADING". Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
023d2a2521
commit
888db089c5
24 changed files with 37 additions and 34 deletions
|
@ -7,12 +7,12 @@ header('Pragma: no-cache');
|
|||
|
||||
date_default_timezone_set('UTC');
|
||||
|
||||
include_once('translator.inc');
|
||||
include_once('translator.inc.php');
|
||||
set_lang();
|
||||
|
||||
include_once("config.inc");
|
||||
include_once("version.inc");
|
||||
include_once("acctfuncs.inc");
|
||||
include_once("config.inc.php");
|
||||
include_once("version.inc.php");
|
||||
include_once("acctfuncs.inc.php");
|
||||
|
||||
# Check if APC extension is loaded, and set cache prefix if it is.
|
||||
if (!defined('EXTENSION_LOADED_APC')) {
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* This file contains the AurRPC remote handling class
|
||||
**/
|
||||
include_once("aur.inc");
|
||||
include_once("aur.inc.php");
|
||||
|
||||
/**
|
||||
* This class defines a remote interface for fetching data
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
include_once("config.inc");
|
||||
include_once("config.inc.php");
|
||||
|
||||
# Make sure this visitor can delete the requested package comment
|
||||
# They can delete if they were the comment submitter, or if they are a TU/Dev
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
include_once('aur.inc');
|
||||
include_once('aur.inc.php');
|
||||
|
||||
function updates_table($dbh)
|
||||
{
|
|
@ -12,7 +12,7 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib' . PATH_SEPARATOR
|
|||
# print __("%s has %s apples.", "Bill", "5");
|
||||
# print __("This is a %hmajor%h problem!", "<b>", "</b>");
|
||||
|
||||
include_once('config.inc');
|
||||
include_once('config.inc.php');
|
||||
include_once('gettext.php');
|
||||
include_once('streams.php');
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue