Index: /temp/trunk/data/lib/slib.php
===================================================================
--- /temp/trunk/data/lib/slib.php	(revision 3360)
+++ /temp/trunk/data/lib/slib.php	(revision 3361)
@@ -784,5 +784,5 @@
 
 // ¥«¥Æ¥´¥ê¥Ä¥ê¡¼¤Î¼èÆÀ¡Ê¿Æ¥«¥Æ¥´¥ê¤ÎValue:0)
-function sfGetLevelCatList($parent_zero = false) {
+function sfGetLevelCatList($parent_zero = true) {
 	$objQuery = new SC_Query();
 	$col = "category_id, category_name, level";
@@ -793,8 +793,12 @@
 	
 	for($cnt = 0; $cnt < $max; $cnt++) {
-		if($arrRet[$cnt]['level'] == LEVEL_MAX) {
+		if($parent_zero) {
+			if($arrRet[$cnt]['level'] == LEVEL_MAX) {
+				$arrValue[$cnt] = $arrRet[$cnt]['category_id'];
+			} else {
+				$arrValue[$cnt] = ""; 
+			}
+		} else {
 			$arrValue[$cnt] = $arrRet[$cnt]['category_id'];
-		} else {
-			$arrValue[$cnt] = ""; 
 		}
 		
