FishEye
Search
Changelog
Browse
Help
osCommerce
:/
oscommerce2
/
trunk
/
catalog
/
includes
/
classes
/
navigation_history.php
Quick Search:
Mode
Side-by-Side
Unified
No wrapping
Soft wrap
Context
Displaying 3 lines of context.
None
| Less | More |
Full
Other Diffs
1739
1696
1619
477
1739
1696
1619
477
Ignore
Blank Lines
Whitespace:
None
Significant
All
Diff
1619
1696
1696
navigation_history.php
127
127
function filter_parameters($parameters) {
128
128
$clean = array();
129
129
130
-
reset($parameters);
131
-
while (list($key, $value) = each($parameters)) {
132
-
if (strpos($key, '_nh-dns') < 1) {
133
-
$clean[$key] = $value;
130
+
if
(
is
_
array
(
$
parameters
)
)
{
131
+
reset($parameters);
132
+
while (list($key, $value) = each($parameters)) {
133
+
if (strpos($key, '_nh-dns') < 1) {
134
+
$clean[$key] = $value;
135
+
}
134
136
}
135
137
}
136
138