From c55dbbc995e152af3f2c88662101b0643d2e171a Mon Sep 17 00:00:00 2001 From: vdigital Date: Fri, 23 May 2008 22:38:14 +0000 Subject: Removed file/folder git-svn-id: http://piwigo.org/svn/trunk@2358 68402e56-0260-453c-a942-63ccdbb3a9ee --- BSF/admin/cat_move.php | 104 ------------------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 BSF/admin/cat_move.php (limited to 'BSF/admin/cat_move.php') diff --git a/BSF/admin/cat_move.php b/BSF/admin/cat_move.php deleted file mode 100644 index 412b1412f..000000000 --- a/BSF/admin/cat_move.php +++ /dev/null @@ -1,104 +0,0 @@ - 0) - { - // TODO: tests - move_categories($_POST['selection'], $_POST['parent']); - } - else - { - array_push( - $page['errors'], - l10n('Select at least one category') - ); - } -} - -// +-----------------------------------------------------------------------+ -// | template initialization | -// +-----------------------------------------------------------------------+ -$template->set_filename('cat_move', 'admin/cat_move.tpl'); - -$template->assign( - array( - 'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=cat_move', - 'F_ACTION' => PHPWG_ROOT_PATH.'admin.php?page=cat_move', - ) - ); - -// +-----------------------------------------------------------------------+ -// | Categories display | -// +-----------------------------------------------------------------------+ - -$query = ' -SELECT id,name,uppercats,global_rank - FROM '.CATEGORIES_TABLE.' - WHERE dir IS NULL -;'; -display_select_cat_wrapper( - $query, - array(), - 'category_to_move_options' - ); - -$query = ' -SELECT id,name,uppercats,global_rank - FROM '.CATEGORIES_TABLE.' -;'; - -display_select_cat_wrapper( - $query, - array(), - 'category_parent_options' - ); - -// +-----------------------------------------------------------------------+ -// | sending html code | -// +-----------------------------------------------------------------------+ - -$template->assign_var_from_handle('ADMIN_CONTENT', 'cat_move'); -?> -- cgit v1.2.3