Fix IPN notify URL with Joomla when derived from menu item
authorMatthew Wire <devel@mrwire.co.uk>
Fri, 3 Nov 2017 19:49:12 +0000 (19:49 +0000)
committerMatthew Wire <devel@mrwire.co.uk>
Fri, 3 Nov 2017 19:49:12 +0000 (19:49 +0000)
CRM/Utils/System/Joomla.php

index 2b356ad26b0322f918741ae25a4a795f72215700..526438f4dffa08845f08bf1195264420f4ef45cc 100644 (file)
@@ -264,7 +264,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
 
     if ($config->userFrameworkFrontend) {
       $script = 'index.php';
-      if (JRequest::getVar("Itemid")) {
+      if (JRequest::getVar("Itemid") && (strpos($path, 'civicrm/payment/ipn') === FALSE)) {
         $Itemid = "{$separator}Itemid=" . JRequest::getVar("Itemid");
       }
     }