It goes badly here:
- Code: Select all
378 0.5828 ArmorySync _contentcheck Checked if is_object Fail
When I try to do "ArmorySync Memberlist for a new guild" I get the following PHP error:
- Code: Select all
PHP Errors
addons/armorysync/inc/armorysync.class.php
Notice line 378: Undefined property: SimpleClass::$characterInfo
I enabled the debug aprint above that line of code:
- Code: Select all
$content = $this->_parseData($armory->fetchCharacter( $this->memberName, '', $roster->config['locale'], $this->server ));
aprint($content);
if ( $this->_contentcheck($content->characterInfo, array('character', 'characterTab' ) ) )
And I get the following, which definitely doesn't have a characterinfo property.
- Code: Select all
SimpleClass object(
'properties' => Array(
0 => 'globalSearch',
1 => 'lang',
2 => '_TAGNAME',
3 => '_CDATA',
4 => 'errorhtml'
),
'globalSearch' => 1,
'lang' => 'en_us',
'_TAGNAME' => 'page',
'_CDATA' => '',
'errorhtml' => SimpleClass object(
'properties' => Array(
0 => '_TAGNAME',
1 => '_CDATA'
),
'_TAGNAME' => 'errorhtml',
'_CDATA' => ''
)
);
I will work on debugging more tomorrow, but I figure it doesn't hurt to post in case someone has already come across it.