فهرست منبع

Fix error in category to game sql

Axel Nordh 5 سال پیش
والد
کامیت
3ba53de96e
2فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. BIN
      Assets/narKampenLocal.db
  2. 2 1
      dbFiles/NewOnlineGame.php

BIN
Assets/narKampenLocal.db


+ 2 - 1
dbFiles/NewOnlineGame.php

@@ -72,7 +72,8 @@
 	}
 
 	$categoryValues = "";
-	foreach ($categoryIds AS $catId) {
+	$categoryIdsArray = explode($categoryIds, ",");
+	foreach ($categoryIdsArray AS $catId) {
 		$categoryValues .= "($gameId, $catId),";
 	}
 	$categoryValues = rtrim($categoryValues, ",");