Skip to content

Commit

Permalink
Fix EZP-23617: Support content class IDs as filters
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkeung committed Feb 4, 2015
1 parent 436e169 commit f3d9ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/ezfindservercallfunctions.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public static function autocomplete( $args )
$classQueryParts = array();
foreach( $classes as $class )
{
if ( is_string( $class ) )
if ( !is_numeric( $class ) )
{
if ( $class = eZContentClass::fetchByIdentifier( $class ) )
{
Expand Down

0 comments on commit f3d9ae8

Please sign in to comment.