messenger-sdk-php
messenger-sdk-php copied to clipboard
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM
I get this error:
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /home/ppetree/public_html/neighborhoodwatchalerts.com/scripts/yim/jymengine.class.php on line 69
I'm running PHP:5.2.17 on Apache:2.2.19.
Any suggestions?
You can simply open and edit jymengine.class.php then replace all of $this :: with $this -> example //prepare url $url = $this :: URL_OAUTH_DIRECT;
//change to $url = $this->URL_OAUTH_DIRECT;
try $url = self::URL_OAUTH_DIRECT;