From: arno Date: Sun, 16 Aug 2009 13:15:31 +0000 (+0200) Subject: move templates to a specific directory X-Git-Tag: v0.3b_thomas~18 X-Git-Url: https://dev.renevier.net/gitweb.cgi?p=syp.git;a=commitdiff_plain;h=b8be7edca1802692be4d330c7065e5260fb348f6 move templates to a specific directory --- diff --git a/admin.php b/admin.php index a27141a..7228214 100644 --- a/admin.php +++ b/admin.php @@ -3,5 +3,5 @@ license. */ require ('inc/langutils.php'); - require ('inc/templates_admin.php'); + require ('inc/html/admin.php'); ?> diff --git a/inc/templates_admin.php b/inc/html/admin.php similarity index 100% rename from inc/templates_admin.php rename to inc/html/admin.php diff --git a/inc/templates_index.php b/inc/html/index.php similarity index 100% rename from inc/templates_index.php rename to inc/html/index.php diff --git a/inc/templates_install.php b/inc/html/install.php similarity index 100% rename from inc/templates_install.php rename to inc/html/install.php diff --git a/inc/templates_upgrade.php b/inc/html/upgrade.php similarity index 100% rename from inc/templates_upgrade.php rename to inc/html/upgrade.php diff --git a/index.php b/index.php index b07a6e4..c1a60bf 100644 --- a/index.php +++ b/index.php @@ -3,5 +3,5 @@ license. */ require ('inc/langutils.php'); - require ('inc/templates_index.php'); + require ('inc/html/index.php'); ?> diff --git a/install.php b/install.php index 612c152..76d8ad8 100644 --- a/install.php +++ b/install.php @@ -3,5 +3,5 @@ license. */ require ('inc/langutils.php'); - require ('inc/templates_install.php'); + require ('inc/html/install.php'); ?> diff --git a/upgrade.php b/upgrade.php index a29bfb3..8a7d09a 100644 --- a/upgrade.php +++ b/upgrade.php @@ -3,5 +3,5 @@ license. */ require ('inc/langutils.php'); - require ('inc/templates_upgrade.php'); + require ('inc/html/upgrade.php'); ?>