diff --git a/compat/auth/ips.php b/compat/auth/ips.php new file mode 100644 index 00000000..b454f202 --- /dev/null +++ b/compat/auth/ips.php @@ -0,0 +1,22 @@ +member_id ) +{ + if ( strcmp( $member->members_pass_hash, $member->encryptedPassword( $_GET['password'] ) ) === 0 ) + { + echo 'OK:' . $member->name; + } + else + { + echo 'Incorrect login or password'; + } +} +else +{ + echo 'Incorrect login or password'; +}