summaryrefslogtreecommitdiff
path: root/extlib
diff options
context:
space:
mode:
authorCiaranG <ciaran@ciarang.com>2009-03-25 15:39:58 +0000
committerCiaranG <ciaran@ciarang.com>2009-03-25 15:39:58 +0000
commit2c8f67f6a9b4e93161e7cae0c38162cb8991e0ef (patch)
tree67b22fdf2ec8d5bace5dd8480030d2ea1d19ef47 /extlib
parent66a2f4c64b8cf9949503f992ce8571244e213bab (diff)
A different search pagination fix (see ticket #1333) that doesn't require fixing the upstream code, thus undoing the change made in d64be5108d69ff4068d4383ab121a3ba7388ada3
Diffstat (limited to 'extlib')
-rw-r--r--extlib/Net/URL/Mapper/Path.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/extlib/Net/URL/Mapper/Path.php b/extlib/Net/URL/Mapper/Path.php
index eb1c34a3f..b541002c7 100644
--- a/extlib/Net/URL/Mapper/Path.php
+++ b/extlib/Net/URL/Mapper/Path.php
@@ -241,12 +241,7 @@ class Net_URL_Mapper_Path
}
$path = '/'.trim(Net_URL::resolvePath($path), '/');
if (!empty($qstring)) {
- if (!strpos($path, '?')) {
- $path .= '?';
- } else {
- $path .= '&';
- }
- $path .= http_build_query($qstring);
+ $path .= '?'.http_build_query($qstring);
}
if (!empty($anchor)) {
$path .= '#'.ltrim($anchor, '#');
@@ -432,4 +427,4 @@ class Net_URL_Mapper_Path
}
-?>
+?> \ No newline at end of file