surjit / oauth

Automatically exported from code.google.com/p/oauth
0 stars 0 forks source link

php: Logic error in OAuthRequest::from_request #26

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Line 203 of OAuth.php at rev 569 reads

      else if ($http_method = "POST") {

should read

      else if ($http_method == "POST") {

(test equality vs. assignment)

Original issue reported on code.google.com by djun.m....@gmail.com on 4 Jun 2008 at 12:38

GoogleCodeExporter commented 9 years ago

Original comment by leah.culver on 8 Jul 2008 at 4:48

GoogleCodeExporter commented 9 years ago
woops, fixed

Original comment by andyster on 15 Jul 2008 at 10:39