John OBrien III
John OBrien III
Warning thrown here: ``` $user= get_object_vars($status['user']); ``` PHP Warning: get_object_vars() expects parameter 1 to be object, null given in /Library/Server/Web/Data/Sites/Default/twina/yourtwapperkeeper_stream.php on line 24
``` OauthPhirehose.php Phirehose.php ``` quick fix is to replace the following files from: https://github.com/fennb/phirehose
within function.php ``` $q = "insert into archives values ('','$keyword','$description','$tags','$screen_name','$user_id','','".time()."')"; ``` needs to be changed to: ``` $q = "insert into archives values (NULL,'$keyword','$description','$tags','$screen_name','$user_id',0,'".time()."')"; ```