Guest User

Untitled

a guest
Dec 18th, 2018
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /*
  2. Jonatan Froes <jonatanfroes@gmail.com>
  3.  
  4. 1. on InstagramController.php, remove this line:
  5. $Account->set("login_required", 1)->update();
  6.  
  7. */
  8.  
  9. /*
  10. 2. add this lines:
  11. */
  12. $message = strtolower($msg);
  13. if(strpos($strtolower($msg), "login required") === false) {
  14. //another error, not login required
  15. } else {
  16. $Account->set("login_required", 1)->update();
  17. }
Add Comment
Please, Sign In to add comment