Changes between Version 2 and Version 3 of login-service
- Timestamp:
- Apr 30, 2014, 2:53:41 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
login-service
v2 v3 26 26 '&password=' . urlencode($password) . '&app_id=' . $app_id; 27 27 $out = file_get_contents($url); 28 if($out == "0") return TRUE;28 if($out === "0") return TRUE; 29 29 return FALSE; 30 30 }