From: Michael J. Rubinsky Date: Thu, 27 Jan 2011 22:00:32 +0000 (-0500) Subject: remove some stray require_once statements X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b2c628dc3f1dee95c51648738f9261377ca7e855;p=horde.git remove some stray require_once statements --- diff --git a/nag/tasklists/create.php b/nag/tasklists/create.php index b4587724e..5b58660cc 100644 --- a/nag/tasklists/create.php +++ b/nag/tasklists/create.php @@ -9,8 +9,6 @@ require_once dirname(__FILE__) . '/../lib/Application.php'; Horde_Registry::appInit('nag'); -require_once NAG_BASE . '/lib/Forms/CreateTaskList.php'; - // Exit if this isn't an authenticated user or if the user can't // create new task lists (default share is locked). if (!$GLOBALS['registry']->getAuth() || $prefs->isLocked('default_tasklist')) { diff --git a/nag/tasklists/delete.php b/nag/tasklists/delete.php index bf4111319..cb97c2d43 100644 --- a/nag/tasklists/delete.php +++ b/nag/tasklists/delete.php @@ -9,8 +9,6 @@ require_once dirname(__FILE__) . '/../lib/Application.php'; Horde_Registry::appInit('nag'); -require_once NAG_BASE . '/lib/Forms/DeleteTaskList.php'; - // Exit if this isn't an authenticated user. if (!$GLOBALS['registry']->getAuth()) { Horde::url('list.php', true)->redirect(); diff --git a/nag/tasklists/edit.php b/nag/tasklists/edit.php index 5c3af6d97..32c5cff73 100644 --- a/nag/tasklists/edit.php +++ b/nag/tasklists/edit.php @@ -9,8 +9,6 @@ require_once dirname(__FILE__) . '/../lib/Application.php'; Horde_Registry::appInit('nag'); -require_once NAG_BASE . '/lib/Forms/EditTaskList.php'; - // Exit if this isn't an authenticated user. if (!$GLOBALS['registry']->getAuth()) { Horde::url('list.php', true)->redirect();