Foppe Hemminga 5 سال پیش
والد
کامیت
b4bd22c71e
1فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 6 1
      snippets.php

+ 6 - 1
snippets.php

@@ -199,9 +199,14 @@ HTML;
 	*/
 	foreach ( $properties as $property ) {
 		$selected = '';
-		if ( in_array( $property, $player_properties[0] ) ) {
+		if ( is_array( $property ) && in_array( $property, $player_properties[0] ) ) {
 			$selected = ' selected';
 		}
+		if ( ! is_array( $property ) ) {
+			if ( $property == $player_properties[0] ) {
+				$selected = ' selected';
+			}
+		}
 		$snippets[3] .= "\t\t\t\t<option${selected}>${property}</option>\n";
 	};
 	$snippets[3] .= <<<HTML