From 0a506696acf130d98840d1eaece532040f762308 Mon Sep 17 00:00:00 2001
From: Karl 'vollmerk' Vollmer
Date: Tue, 19 May 2009 04:30:18 +0000
Subject: add full path to needed files so there is no confusion
---
templates/show_install.inc.php | 3 ++-
templates/show_install_account.inc.php | 3 ++-
templates/show_install_config.inc.php | 4 +++-
templates/show_install_lang.inc.php | 3 ++-
4 files changed, 9 insertions(+), 4 deletions(-)
(limited to 'templates')
diff --git a/templates/show_install.inc.php b/templates/show_install.inc.php
index afd68f33..9465ca3f 100644
--- a/templates/show_install.inc.php
+++ b/templates/show_install.inc.php
@@ -19,6 +19,7 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
if (INSTALL != '1') { exit; }
+$prefix = dirname(__FILE__);
$dir = is_rtl($htmllang) ? 'rtl' : 'ltr';
?>
@@ -43,7 +44,7 @@ $dir = is_rtl($htmllang) ? 'rtl' : 'ltr';
diff --git a/templates/show_install_account.inc.php b/templates/show_install_account.inc.php
index 9c52b93e..8f51a714 100644
--- a/templates/show_install_account.inc.php
+++ b/templates/show_install_account.inc.php
@@ -20,6 +20,7 @@
*/
if (INSTALL != '1') { exit; }
+$prefix = dirname(__FILE__);
?>
@@ -41,7 +42,7 @@ if (INSTALL != '1') { exit; }
diff --git a/templates/show_install_config.inc.php b/templates/show_install_config.inc.php
index 080ee358..383591e2 100644
--- a/templates/show_install_config.inc.php
+++ b/templates/show_install_config.inc.php
@@ -20,6 +20,7 @@
*/
if (INSTALL != '1') { exit; }
+$prefix = dirname(__FILE__);
?>
@@ -40,7 +41,8 @@ if (INSTALL != '1') { exit; }
diff --git a/templates/show_install_lang.inc.php b/templates/show_install_lang.inc.php
index f2bc46a1..c893ad15 100644
--- a/templates/show_install_lang.inc.php
+++ b/templates/show_install_lang.inc.php
@@ -18,6 +18,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+$prefix = dirname(__FILE__);
?>
@@ -42,7 +43,7 @@
--
cgit