Fix Potential Duplicates table when viewing a non-queued app

This commit is contained in:
Alexander Nicolaysen Sørnes
2009-06-28 15:41:54 +02:00
parent 3cf7a256f1
commit 077ecab9f9
2 changed files with 16 additions and 7 deletions

View File

@@ -291,10 +291,10 @@ class application_queue
function displayDuplicates()
{
echo "<b>Like matches</b><br />\n";
$this->displayDuplicateTable(searchForApplication($this->oApp->sName));
$this->displayDuplicateTable(searchForApplication($this->oApp->sName, $this->oApp->objectGetId()));
echo "<br />\n";
echo "<b>Partial matches</b><br />\n";
$this->displayDuplicateTable(searchForApplicationPartial($this->oApp->sName));
$this->displayDuplicateTable(searchForApplicationPartial($this->oApp->sName, $this->oApp->objectGetId()));
}
function displayDuplicateTable($hResult)