From 0cf64d78e0203c98b28e10d6d9d8c7e6915a1387 Mon Sep 17 00:00:00 2001 From: Tony Lambregts Date: Sat, 8 Jul 2006 22:45:40 +0000 Subject: [PATCH] Fix moving version to existing application, variable wasn't prefixed correctly --- admin/adminAppQueue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/adminAppQueue.php b/admin/adminAppQueue.php index 9098465..062780a 100644 --- a/admin/adminAppQueue.php +++ b/admin/adminAppQueue.php @@ -61,7 +61,7 @@ function outputSearchTableForDuplicateFlagging($currentAppId, $hResult) //display row echo "\n"; /* map the merging of the current app to the app we are displaying in the table */ - echo " ".html_ahref($oRow->appName,"adminAppQueue.php?sSub=duplicate&sAppType=application&iAppId=".$currentAppId."&appIdMergeTo=".$oRow->appId)."\n"; + echo " ".html_ahref($oRow->appName,"adminAppQueue.php?sSub=duplicate&sAppType=application&iAppId=".$currentAppId."&iAppIdMergeTo=".$oRow->appId)."\n"; echo " $oVersionCount->versions versions  \n"; echo "\n\n";