From 5d474177113f563c5c4d299485e0edb27d061f8a Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 15 Nov 2010 21:06:44 -0800 Subject: [PATCH] more view cleanup --- {view => include}/contact_selectors.php | 0 {view => include}/profile_selectors.php | 0 mod/contacts.php | 2 +- mod/profiles.php | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename {view => include}/contact_selectors.php (100%) rename {view => include}/profile_selectors.php (100%) diff --git a/view/contact_selectors.php b/include/contact_selectors.php similarity index 100% rename from view/contact_selectors.php rename to include/contact_selectors.php diff --git a/view/profile_selectors.php b/include/profile_selectors.php similarity index 100% rename from view/profile_selectors.php rename to include/profile_selectors.php diff --git a/mod/contacts.php b/mod/contacts.php index f0e677ba5..c33c69fa8 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -166,7 +166,7 @@ function contacts_content(&$a) { } - require_once('view/contact_selectors.php'); + require_once('include/contact_selectors.php'); $tpl = load_view_file("view/contact_edit.tpl"); diff --git a/mod/profiles.php b/mod/profiles.php index 26e8d4ec5..0bf082efc 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -280,7 +280,7 @@ function profiles_content(&$a) { require_once('mod/profile.php'); profile_load($a,$a->user['nickname'],$r[0]['id']); - require_once('view/profile_selectors.php'); + require_once('include/profile_selectors.php'); $tpl = load_view_file('view/profed_head.tpl');