Search for partial app names

This commit is contained in:
Alexander Nicolaysen Sørnes
2008-06-18 00:14:27 +02:00
committed by Chris Morgan
parent 5fbaddd9f1
commit 88c098c83f
2 changed files with 36 additions and 1 deletions

View File

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