Skip to content

Commit

Permalink
Merge pull request ezsystems#1117 from glye/ezp-23687_notice_when_run…
Browse files Browse the repository at this point in the history
…ning_monitor_cronjob

Fix EZP-23687: Notice when running "$phpbin runcronjobs.php monitor"
  • Loading branch information
glye committed Nov 27, 2014
2 parents 496dc7f + 9412a94 commit 558a10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ezdbschema/classes/ezdbschemachecker.php
Expand Up @@ -228,7 +228,7 @@ static function diffField( $field1, $field2, $schema1Type, $schema2Type )
static function diffIndex( $index1, $index2, $schema1Type, $schema2Type )
{
if ( ( $index1['type'] != $index2['type'] ) ||
count( array_diff( $index1, $index2 ) ) )
serialize( $index1 ) !== serialize( $index2 ) )
{
return $index2;
}
Expand Down

0 comments on commit 558a10e

Please sign in to comment.