fix variables on update
[Pman.Core] / Mailer.php
index 1211e4e..2b3c274 100644 (file)
@@ -588,7 +588,6 @@ class Pman_Core_Mailer {
         
         $real_url = str_replace(' ', '%20', $this->mapurl($url));
         $a = new HTTP_Request($real_url);
-        $a->addQueryString('is_email', 1);
         $a->sendRequest();
         $data = $a->getResponseBody();
         
@@ -618,8 +617,7 @@ class Pman_Core_Mailer {
     
     function mapurl($in)
     {
-        
-        foreach($this->urlmap as $o=>$n) {
+         foreach($this->urlmap as $o=>$n) {
             if (strpos($in,$o) === 0) {
                 $ret =$n . substr($in,strlen($o));
                 $this->log("mapURL in $in = $ret");