2 Commits
v1.4 ... v1.4.1

Author SHA1 Message Date
Torsten Stelling
2532634ac9 added version in php file, which may come handy with bug finding 2013-06-28 14:29:39 +02:00
Torsten Stelling
2eefcd7677 removed password from debug log 2013-06-28 12:56:42 +02:00
2 changed files with 7 additions and 1 deletions

View File

@@ -61,3 +61,7 @@ v1.4 - 2013/6/28
* fixed authentication with Mr.Reader 2.0
* fixed debugging options
v1.4.1 - 2013/6/28
* removed password from debug log file

View File

@@ -1,5 +1,7 @@
<?php
// v1.4.1
class FeverAPI extends Handler {
const API_LEVEL = 3;
@@ -131,7 +133,7 @@ class FeverAPI extends Handler {
// debug output
$output = array();
$output['email'] = $username;
$output['password'] = $password;
$output['password'] = '***not displayed***';
$output['apikey'] = $apikey;
file_put_contents('./debug_fever.txt','auth POST: '.json_encode($output)."\n",FILE_APPEND);
}