diff options
-rw-r--r-- | main.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -75,7 +75,7 @@ Errors: private $username; private $adminusername = "anton.sijanec"; private $password; - public $version = array(0, 10, 1); + public $version = array(0, 10, 2); private $programname = "gimsisextclient"; private $programdomain = 'gimsisextclient.gimb.tk'; private $cookiedir; // set at runtime, ker je get_curerent_user, v login() @@ -524,7 +524,7 @@ Errors: curl_setopt($ch, CURLOPT_POST, 0); $sporocilo_output = curl_exec($ch); $zadeva = html_entity_decode(get_string_between($sporocilo_output, '<input name="ctl00$ModalMasterBody$edtZadeva" type="text" value="', '" id="ctl00_ModalMasterBody_edtZadeva" />')); - $telo = html_entity_decode(html_entity_decode(html_entity_decode(get_string_between($sporocilo_output, "</span></p>", "</textarea>")))); + $telo = str_replace("'", "'", html_entity_decode(html_entity_decode(get_string_between($sporocilo_output, "</span></p>", "</textarea>")))); $posiljatelj = html_entity_decode(html_entity_decode(get_string_between($sporocilo_output, "><b>Od</b>: ", "<br /><b>Poslano</b>: "))); // ne trudi se za prejemnika, gimsisglitch(C)12 $datumincas = get_string_between($sporocilo_output, "<br /><b>Poslano</b>: ", "<br /><b>Za</b>: "); // pazi, tale je za ljudi $cas = explode(":", end(explode(" ", $datumincas))); |