Update the references for header.php and footer.php files to point the resources directory.

This commit is contained in:
Mark Crane
2013-07-06 06:29:50 +00:00
parent f267e45e67
commit e9aa47069c
230 changed files with 884 additions and 884 deletions

View File

@@ -52,7 +52,7 @@ if (isset($_REQUEST["id"])) {
$action = "add";
}
require_once "includes/header.php";
require_once "resources/header.php";
if ($action == "update") {
$page["title"] = $text['title-xmpp-edit'];
}
@@ -98,7 +98,7 @@ if ($action == "update") {
if ((!isset($_REQUEST['submit'])) || ($_REQUEST['submit'] != $text['button-save'])) {
// If we arent saving a Profile Display the form.
include "profile_edit.php";
require_once "includes/footer.php";
require_once "resources/footer.php";
exit;
}
@@ -117,7 +117,7 @@ if (strlen($error) > 0) {
include "errors.php";
$profile = $request;
include "profile_edit.php";
require_once "includes/footer.php";
require_once "resources/footer.php";
exit;
}
@@ -242,6 +242,6 @@ if ($fp) {
include "update_complete.php";
//show the footer
require_once "includes/footer.php";
require_once "resources/footer.php";
?>