X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Mailer.php;h=2b3c27469e9df75b9f3ea1deaa906da5f542ad89;hb=dff7116c31985c523f927df3e8e7cf50670ef428;hp=1211e4ee57c4a8aaf3a7115d9a745b33ac828db0;hpb=81b82c12f33746b22863df989c119918a371013e;p=Pman.Core diff --git a/Mailer.php b/Mailer.php index 1211e4ee..2b3c2746 100644 --- a/Mailer.php +++ b/Mailer.php @@ -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");