remove some stray require_once statements
authorMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 27 Jan 2011 22:00:32 +0000 (17:00 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 27 Jan 2011 22:00:32 +0000 (17:00 -0500)
nag/tasklists/create.php
nag/tasklists/delete.php
nag/tasklists/edit.php

index b458772..5b58660 100644 (file)
@@ -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')) {
index bf41113..cb97c2d 100644 (file)
@@ -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();
index 5c3af6d..32c5cff 100644 (file)
@@ -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();