| \n\n";
echo " This is the full view of the application version waiting to be approved. \n";
diff --git a/appview.php b/appview.php
index 684beff..5dae7e4 100644
--- a/appview.php
+++ b/appview.php
@@ -119,50 +119,6 @@ function show_note($sType,$oData){
return $s;
}
-/**
- * display the versions
- */
-function display_versions($iAppId, $aVersionsIds)
-{
- if ($aVersionsIds)
- {
- echo html_frame_start("","98%","",0);
- echo " \n\n";
-
- echo "\n";
- echo " | Version | \n";
- echo " Description | \n";
- echo " Rating | \n";
- echo " Wine version | \n";
- echo " Comments | \n";
- echo " \n\n";
-
- $c = 0;
- foreach($aVersionsIds as $iVersionId)
- {
- $oVersion = new Version($iVersionId);
-
- // set row color
- $bgcolor = ($c % 2 == 0) ? "color0" : "color1";
-
- //display row
- echo "\n";
- echo " | ".$oVersion->sName." | \n";
- echo " ".trim_description($oVersion->sDescription)." | \n";
- echo " ".$oVersion->sTestedRating." | \n";
- echo " ".$oVersion->sTestedRelease." | \n";
- echo " ".sizeof($oVersion->aCommentsIds)." | \n";
- echo " \n\n";
-
- $c++;
-
- }
- echo " \n";
- echo html_frame_end("Click the Version Name to view the details of that Version");
- }
-}
-
-
if(!is_numeric($_REQUEST['appId']) && !is_numeric($_REQUEST['versionId']))
{
errorpage("Something went wrong with the application or version id");
diff --git a/include/util.php b/include/util.php
index c35dbc7..e306a86 100644
--- a/include/util.php
+++ b/include/util.php
@@ -363,4 +363,48 @@ function outputSearchTableForhResult($search_words, $hResult)
}
}
+/**
+ * display the versions
+ * Used in appview.php and adminAppQueue.php
+ */
+function display_versions($iAppId, $aVersionsIds)
+{
+ if ($aVersionsIds)
+ {
+ echo html_frame_start("","98%","",0);
+ echo "\n\n";
+
+ echo "\n";
+ echo " | Version | \n";
+ echo " Description | \n";
+ echo " Rating | \n";
+ echo " Wine version | \n";
+ echo " Comments | \n";
+ echo " \n\n";
+
+ $c = 0;
+ foreach($aVersionsIds as $iVersionId)
+ {
+ $oVersion = new Version($iVersionId);
+
+ // set row color
+ $bgcolor = ($c % 2 == 0) ? "color0" : "color1";
+
+ //display row
+ echo "\n";
+ echo " | ".$oVersion->sName." | \n";
+ echo " ".trim_description($oVersion->sDescription)." | \n";
+ echo " ".$oVersion->sTestedRating." | \n";
+ echo " ".$oVersion->sTestedRelease." | \n";
+ echo " ".sizeof($oVersion->aCommentsIds)." | \n";
+ echo " \n\n";
+
+ $c++;
+
+ }
+ echo " \n";
+ echo html_frame_end("Click the Version Name to view the details of that Version");
+ }
+}
+
?>
\ No newline at end of file
|