This is the support topic for the Bit.ly Yii Extension.
http://www.yiiframew...-url-shortener/
Page 1 of 1
[EXTENSION] Bit.ly Extension
#2
Posted 16 April 2013 - 11:47 AM
Hi
I had to modify VGBitly.php as follows
Before:
After:
As I was getting an error under PHP 5.3.10
get_class() expects parameter 1 to be object, string given
Thanks
Russell
I had to modify VGBitly.php as follows
Before:
protected function simplexml2array($xml)
{
if (get_class($xml) == 'SimpleXMLElement')
After:
protected function simplexml2array($xml)
{
if (is_object($xml) && get_class($xml) == 'SimpleXMLElement') As I was getting an error under PHP 5.3.10
get_class() expects parameter 1 to be object, string given
Thanks
Russell
Share this topic:
Page 1 of 1

Help















