Revert "Add support for application-wide notes & how-tos"

This reverts commit e546738913.
This commit is contained in:
Alexander Nicolaysen Sørnes
2009-07-21 16:02:05 +02:00
parent e7b71b52fe
commit 0339fa60c2
7 changed files with 30 additions and 139 deletions

View File

@@ -1171,7 +1171,15 @@ class version {
view_version_bugs($this->iVersionId, $this->get_buglink_ids());
echo note::displayNotesForEntry($this->iVersionId);
/* display the notes for the application */
$hNotes = query_parameters("SELECT noteId FROM appNotes WHERE versionId = '?'",
$this->iVersionId);
while( $oRow = query_fetch_object($hNotes) )
{
$oNote = new Note($oRow->noteId);
$oNote->display();
}
// Comments Section
if($this->iVersionId)