Skip to content
Snippets Groups Projects
Commit 09c27a6d authored by Guy Brand's avatar Guy Brand
Browse files

Fix backlinks - See FS#1040

darcs-hash:20070330215042-19e2d-3528f2412ff044eb45158f349db5bbb5e32d907b.gz
parent 41dfcdfc
No related branches found
No related tags found
No related merge requests found
......@@ -279,7 +279,8 @@ function ft_resultCombine($args){
}
$result = array();
foreach ($args[0] as $key1 => $value1) {
if ($array_count > 1) {
foreach ($args[0] as $key1 => $value1) {
for ($i = 1; $i !== $array_count; $i++) {
foreach ($args[$i] as $key2 => $value2) {
if ((string) $key1 === (string) $key2) {
......@@ -288,6 +289,7 @@ function ft_resultCombine($args){
}
}
}
}
}
return $result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment