From b8be7edca1802692be4d330c7065e5260fb348f6 Mon Sep 17 00:00:00 2001 From: arno Date: Sun, 16 Aug 2009 15:15:31 +0200 Subject: [PATCH] move templates to a specific directory --- admin.php | 2 +- inc/{templates_admin.php => html/admin.php} | 0 inc/{templates_index.php => html/index.php} | 0 inc/{templates_install.php => html/install.php} | 0 inc/{templates_upgrade.php => html/upgrade.php} | 0 index.php | 2 +- install.php | 2 +- upgrade.php | 2 +- 8 files changed, 4 insertions(+), 4 deletions(-) rename inc/{templates_admin.php => html/admin.php} (100%) rename inc/{templates_index.php => html/index.php} (100%) rename inc/{templates_install.php => html/install.php} (100%) rename inc/{templates_upgrade.php => html/upgrade.php} (100%) 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'); ?> -- 2.39.2