From 68f039dedfdfa7fd66819ee6ced1152aaa0d059f Mon Sep 17 00:00:00 2001 From: tjhunt Date: Thu, 6 Jul 2006 10:07:02 +0000 Subject: [PATCH] 6030 - Can't move question categories back to the top level. --- question/category.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/question/category.php b/question/category.php index 77453d4a6e914..c0ef9ef01a051 100644 --- a/question/category.php +++ b/question/category.php @@ -86,7 +86,7 @@ $qcobject->move_category_up_down('down', $param->movedown); } else if (!empty($param->hide)) { $qcobject->publish_category(false, $param->hide); - } else if (!empty($param->move) and !empty($param->moveto)) { + } else if (!empty($param->move)) { $qcobject->move_category($param->move, $param->moveto); } else if (!empty($param->publish)) { $qcobject->publish_category(true, $param->publish);