Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:Index: Framework.Functions.php
===================================================================
--- Framework.Functions.php (revision 147)
+++ Framework.Functions.php (working copy)
@@ -572,9 +572,10 @@
if ($sReturn != '') $sReturn .= '&';
$sReturn .= $Querystring;
}
- if ($sReturn != '') $sReturn = '?'.$sReturn;
+ $PageName = $Configuration['BASE_URL'].$PageName;
+ if ($sReturn != '') $sReturn = (strrpos($PageName, '?') > 0 ? '&' : '?').$sReturn;
if ($Querystring != '' && substr($Querystring, 0, 1) == '#') $sReturn .= $Querystring;
- return $Configuration['BASE_URL'].$PageName.$sReturn;
+ return $PageName.$sReturn;
}
}
1 to 3 of 3