- Main App has a random screenshot from it's versions.
- Versions have a random screenshot from their screenshots - code cleanup (better indentation + comments + replaced globally some registered vars)
This commit is contained in:
173
appview.php
173
appview.php
@@ -1,11 +1,11 @@
|
|||||||
<?
|
<?
|
||||||
|
/**********************************/
|
||||||
|
/* code to display an application */
|
||||||
|
/**********************************/
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* APPLICATION ENVIRONMENT
|
||||||
* Application Database - appview.php
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
include("path.php");
|
include("path.php");
|
||||||
require(BASE."include/"."incl.php");
|
require(BASE."include/"."incl.php");
|
||||||
require(BASE."include/"."application.php");
|
require(BASE."include/"."application.php");
|
||||||
@@ -18,41 +18,37 @@ require(BASE."include/"."category.php");
|
|||||||
|
|
||||||
require(BASE."include/"."maintainer.php");
|
require(BASE."include/"."maintainer.php");
|
||||||
|
|
||||||
global $apidb_root;
|
|
||||||
|
|
||||||
|
|
||||||
// NOTE: app Owners will see this menu too, make sure we don't show admin-only options
|
// NOTE: app Owners will see this menu too, make sure we don't show admin-only options
|
||||||
function admin_menu()
|
function admin_menu()
|
||||||
{
|
{
|
||||||
global $appId;
|
|
||||||
global $versionId;
|
|
||||||
global $apidb_root;
|
global $apidb_root;
|
||||||
|
|
||||||
$m = new htmlmenu("Admin");
|
$m = new htmlmenu("Admin");
|
||||||
if($versionId)
|
if($_REQUEST[versionId]) {
|
||||||
{
|
$m->add("Add Note", $apidb_root."admin/addAppNote.php?appId=$appId&versionId=".$_REQUEST['versionId']);
|
||||||
$m->add("Add Note", $apidb_root."admin/addAppNote.php?appId=$appId&versionId=$versionId");
|
|
||||||
$m->addmisc(" ");
|
$m->addmisc(" ");
|
||||||
|
|
||||||
$m->add("Edit Version", $apidb_root."admin/editAppVersion.php?appId=$appId&versionId=$versionId");
|
$m->add("Edit Version", $apidb_root."admin/editAppVersion.php?appId=$appId&versionId=".$_REQUEST['versionId']);
|
||||||
|
|
||||||
$url = $apidb_root."admin/deleteAny.php?what=appVersion&versionId=$versionId&confirmed=yes";
|
$url = $apidb_root."admin/deleteAny.php?what=appVersion&versionId=".$_REQUEST['versionId']."&confirmed=yes";
|
||||||
$m->add("Delete Version", "javascript:deleteURL(\"Are you sure?\", \"".$url."\")");
|
$m->add("Delete Version", "javascript:deleteURL(\"Are you sure?\", \"".$url."\")");
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
$m->add("Add Version", $apidb_root."admin/addAppVersion.php?appId=$appId");
|
$m->add("Add Version", $apidb_root."admin/addAppVersion.php?appId=".$_REQUEST['appId']);
|
||||||
$m->addmisc(" ");
|
$m->addmisc(" ");
|
||||||
|
|
||||||
$m->add("Edit App", $apidb_root."admin/editAppFamily.php?appId=$appId");
|
$m->add("Edit App", $apidb_root."admin/editAppFamily.php?appId=".$_REQUEST['appId']);
|
||||||
|
|
||||||
// global admin options
|
// global admin options
|
||||||
if(havepriv("admin"))
|
if(havepriv("admin"))
|
||||||
{
|
{
|
||||||
$url = $apidb_root."admin/deleteAny.php?what=appFamily&appId=$appId&confirmed=yes";
|
$url = $apidb_root."admin/deleteAny.php?what=appFamily&appId=".$_REQUEST['appId']."&confirmed=yes";
|
||||||
$m->add("Delete App", "javascript:deleteURL(\"Are you sure?\", \"".$url."\")");
|
$m->add("Delete App", "javascript:deleteURL(\"Are you sure?\", \"".$url."\")");
|
||||||
$m->addmisc(" ");
|
$m->addmisc(" ");
|
||||||
$m->add("Edit Owners", $apidb_root."admin/editAppOwners.php?appId=$appId");
|
$m->add("Edit Owners", $apidb_root."admin/editAppOwners.php?appId=".$_REQUEST['appId']);
|
||||||
$m->add("Edit Bundle", $apidb_root."admin/editBundle.php?bundleId=$appId");
|
$m->add("Edit Bundle", $apidb_root."admin/editBundle.php?bundleId=".$_REQUEST['appId']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,34 +56,47 @@ function admin_menu()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function get_screenshot_img($appId, $versionId)
|
/**
|
||||||
|
* Get a random image for a particular version of an app.
|
||||||
|
* If the version is not set, get a random app image
|
||||||
|
*/
|
||||||
|
function get_screenshot_img($appId, $versionId="")
|
||||||
{
|
{
|
||||||
global $apidb_root;
|
global $apidb_root;
|
||||||
|
|
||||||
if(!$versionId)
|
if($versionId)
|
||||||
$versionId = 0;
|
{
|
||||||
|
$result = mysql_query("SELECT *, RAND() AS rand FROM appData WHERE appId = $appId AND versionId = $versionId AND type = 'image' ORDER BY rand");
|
||||||
$result = mysql_query("SELECT * FROM appData WHERE appId = $appId AND versionId = $versionId AND type = 'image'");
|
}
|
||||||
|
else {
|
||||||
|
$result = mysql_query("SELECT *, RAND() AS rand FROM appData WHERE appId = $appId AND type = 'image' ORDER BY rand");
|
||||||
|
}
|
||||||
|
|
||||||
if(!$result || !mysql_num_rows($result))
|
if(!$result || !mysql_num_rows($result))
|
||||||
{
|
{
|
||||||
$imgFile = "<img src='".$apidb_root."images/no_screenshot.gif' border=0 alt='No Screenshot'>";
|
$imgFile = "<img src='".$apidb_root."images/no_screenshot.gif' border=0 alt='No Screenshot' />";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$ob = mysql_fetch_object($result);
|
$ob = mysql_fetch_object($result);
|
||||||
$imgFile = "<img src='appimage.php?imageId=$ob->id&width=128&height=128' ".
|
$imgFile = "<img src='appimage.php?imageId=$ob->id&width=128&height=128' ".
|
||||||
"border=0 alt='$ob->description'>";
|
"border=0 alt='$ob->description' />";
|
||||||
}
|
}
|
||||||
|
|
||||||
$img = html_frame_start("",'128','',2);
|
$img = html_frame_start("",'128','',2);
|
||||||
|
if($versionId)
|
||||||
$img .= "<a href='screenshots.php?appId=$appId&versionId=$versionId'>$imgFile</a>";
|
$img .= "<a href='screenshots.php?appId=$appId&versionId=$versionId'>$imgFile</a>";
|
||||||
$img .= html_frame_end()."<br>";
|
else
|
||||||
|
$img .= $imgFile;
|
||||||
|
$img .= html_frame_end()."<br />";
|
||||||
|
|
||||||
return $img;
|
return $img;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TODO: what does it do ?
|
||||||
|
*/
|
||||||
function display_catpath($catId)
|
function display_catpath($catId)
|
||||||
{
|
{
|
||||||
$cat = new Category($catId);
|
$cat = new Category($catId);
|
||||||
@@ -98,15 +107,17 @@ function display_catpath($catId)
|
|||||||
echo html_frame_end();
|
echo html_frame_end();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* display the SUB apps that belong to this app */
|
|
||||||
|
/**
|
||||||
|
* display the SUB apps that belong to this app
|
||||||
|
*/
|
||||||
function display_bundle($appId)
|
function display_bundle($appId)
|
||||||
{
|
{
|
||||||
$result = mysql_query("SELECT appFamily.appId, appName, description FROM appBundle, appFamily ".
|
$result = mysql_query("SELECT appFamily.appId, appName, description FROM appBundle, appFamily ".
|
||||||
"WHERE bundleId = $appId AND appBundle.appId = appFamily.appId");
|
"WHERE bundleId = $appId AND appBundle.appId = appFamily.appId");
|
||||||
if(!$result || mysql_num_rows($result) == 0)
|
if(!$result || mysql_num_rows($result) == 0)
|
||||||
{
|
{
|
||||||
// do nothing
|
return; // do nothing
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
echo html_frame_start("","98%","",0);
|
echo html_frame_start("","98%","",0);
|
||||||
@@ -118,15 +129,13 @@ function display_bundle($appId)
|
|||||||
echo "</tr>\n\n";
|
echo "</tr>\n\n";
|
||||||
|
|
||||||
$c = 0;
|
$c = 0;
|
||||||
while($ob = mysql_fetch_object($result))
|
while($ob = mysql_fetch_object($result)) {
|
||||||
{
|
|
||||||
//set row color
|
//set row color
|
||||||
$bgcolor = ($c % 2 == 0) ? "color0" : "color1";
|
$bgcolor = ($c % 2 == 0) ? "color0" : "color1";
|
||||||
|
|
||||||
//format desc
|
//format desc
|
||||||
$desc = substr(stripslashes($ob->description),0,50);
|
$desc = substr(stripslashes($ob->description),0,50);
|
||||||
if(strlen($desc) == 50)
|
if(strlen($desc) == 50) $desc .= " ...";
|
||||||
$desc .= " ...";
|
|
||||||
|
|
||||||
//display row
|
//display row
|
||||||
echo "<tr class=$bgcolor>\n";
|
echo "<tr class=$bgcolor>\n";
|
||||||
@@ -142,7 +151,9 @@ function display_bundle($appId)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* display the notes for the app */
|
/**
|
||||||
|
* display the notes for the app
|
||||||
|
*/
|
||||||
function display_notes($appId, $versionId = 0)
|
function display_notes($appId, $versionId = 0)
|
||||||
{
|
{
|
||||||
$result = mysql_query("SELECT noteId,noteTitle FROM appNotes ".
|
$result = mysql_query("SELECT noteId,noteTitle FROM appNotes ".
|
||||||
@@ -159,16 +170,16 @@ function display_notes($appId, $versionId = 0)
|
|||||||
$c = 1;
|
$c = 1;
|
||||||
while($ob = mysql_fetch_object($result))
|
while($ob = mysql_fetch_object($result))
|
||||||
{
|
{
|
||||||
//skip if NONAME
|
// skip if NONAME
|
||||||
if ($ob->noteTitle == "NONAME" || $ob->noteTitle == "WARNING" || $ob->noteTitle == "HOWTO") { continue; }
|
if ($ob->noteTitle == "NONAME" || $ob->noteTitle == "WARNING" || $ob->noteTitle == "HOWTO") { continue; }
|
||||||
|
|
||||||
//set link for version
|
// set link for version
|
||||||
if ($versionId != 0)
|
if ($versionId != 0)
|
||||||
{
|
{
|
||||||
$versionLink = "&versionId=$versionId";
|
$versionLink = "&versionId=$versionId";
|
||||||
}
|
}
|
||||||
|
|
||||||
//display row
|
// display row
|
||||||
if (havepriv("admin") || isMaintainer($appId,$versionId) )
|
if (havepriv("admin") || isMaintainer($appId,$versionId) )
|
||||||
echo " <a href='admin/editAppNote.php?noteId=".$ob->noteId."&appId=$appId".$versionLink."'> $c. ".substr(stripslashes($ob->noteTitle),0,30)."</a><br>\n";
|
echo " <a href='admin/editAppNote.php?noteId=".$ob->noteId."&appId=$appId".$versionLink."'> $c. ".substr(stripslashes($ob->noteTitle),0,30)."</a><br>\n";
|
||||||
else
|
else
|
||||||
@@ -179,7 +190,9 @@ function display_notes($appId, $versionId = 0)
|
|||||||
echo "</td></tr>\n";
|
echo "</td></tr>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
/* display the versions */
|
/**
|
||||||
|
* display the versions
|
||||||
|
*/
|
||||||
function display_versions($appId, $versions)
|
function display_versions($appId, $versions)
|
||||||
{
|
{
|
||||||
if ($versions)
|
if ($versions)
|
||||||
@@ -230,11 +243,13 @@ function display_versions($appId, $versions)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* code to VIEW an application & versions */
|
|
||||||
|
|
||||||
$appId = $_REQUEST['appId'];
|
$appId = $_REQUEST['appId'];
|
||||||
$versionId = $_REQUEST['versionId'];
|
$versionId = $_REQUEST['versionId'];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We want to see an application family (=no version)
|
||||||
|
*/
|
||||||
if(!is_numeric($appId))
|
if(!is_numeric($appId))
|
||||||
{
|
{
|
||||||
errorpage("Something went wrong with the IDs");
|
errorpage("Something went wrong with the IDs");
|
||||||
@@ -247,35 +262,32 @@ if($appId && !$versionId)
|
|||||||
$data = $app->data;
|
$data = $app->data;
|
||||||
if(!$data)
|
if(!$data)
|
||||||
{
|
{
|
||||||
// Oops! application not found or other error. do something
|
// oops! application not found or other error. do something
|
||||||
errorpage('Internal Database Access Error');
|
errorpage('Internal Database Access Error');
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show Vote Menu
|
// show Vote Menu
|
||||||
if(loggedin())
|
if(loggedin())
|
||||||
apidb_sidebar_add("vote_menu");
|
apidb_sidebar_add("vote_menu");
|
||||||
|
|
||||||
// Show Admin Menu
|
// show Admin Menu
|
||||||
if(loggedin() && (havepriv("admin") || $current->ownsApp($appId)))
|
if(loggedin() && (havepriv("admin") || $current->ownsApp($appId)))
|
||||||
apidb_sidebar_add("admin_menu");
|
apidb_sidebar_add("admin_menu");
|
||||||
|
|
||||||
// header
|
// header
|
||||||
apidb_header("Viewing App - ".$data->appName);
|
apidb_header("Viewing App - ".$data->appName);
|
||||||
|
|
||||||
//cat display
|
// cat display
|
||||||
display_catpath($app->data->catId);
|
display_catpath($app->data->catId);
|
||||||
|
|
||||||
//set Vendor
|
// set Vendor
|
||||||
$vendor = $app->getVendor();
|
$vendor = $app->getVendor();
|
||||||
|
|
||||||
//set URL
|
// set URL
|
||||||
$appLinkURL = ($data->webPage) ? "<a href='$data->webPage'>".substr(stripslashes($data->webPage),0,30)."</a>": " ";
|
$appLinkURL = ($data->webPage) ? "<a href='$data->webPage'>".substr(stripslashes($data->webPage),0,30)."</a>": " ";
|
||||||
|
|
||||||
//set Image
|
// start display application
|
||||||
$img = get_screenshot_img($appId, $versionId);
|
|
||||||
|
|
||||||
//start display application
|
|
||||||
echo html_frame_start("","98%","",0);
|
echo html_frame_start("","98%","",0);
|
||||||
|
|
||||||
echo "<tr><td class=color4 valign=top>\n";
|
echo "<tr><td class=color4 valign=top>\n";
|
||||||
@@ -290,13 +302,13 @@ if($appId && !$versionId)
|
|||||||
" <a href='bugs.php?appId=$data->appId.'> Check for bugs in bugzilla </a> \n";
|
" <a href='bugs.php?appId=$data->appId.'> Check for bugs in bugzilla </a> \n";
|
||||||
echo " </td></tr>\n";
|
echo " </td></tr>\n";
|
||||||
|
|
||||||
//display notes
|
// display notes
|
||||||
display_notes($appId);
|
display_notes($appId);
|
||||||
|
|
||||||
//main URL
|
// main URL
|
||||||
echo " <tr class=color1 valign=top><td align=right> <b>URL</b></td><td>".$appLinkURL."</td></tr>\n";
|
echo " <tr class=color1 valign=top><td align=right> <b>URL</b></td><td>".$appLinkURL."</td></tr>\n";
|
||||||
|
|
||||||
//optional links
|
// optional links
|
||||||
$result = mysql_query("SELECT * FROM appData WHERE appId = $appId AND type = 'url'");
|
$result = mysql_query("SELECT * FROM appData WHERE appId = $appId AND type = 'url'");
|
||||||
if($result && mysql_num_rows($result) > 0)
|
if($result && mysql_num_rows($result) > 0)
|
||||||
{
|
{
|
||||||
@@ -308,6 +320,10 @@ if($appId && !$versionId)
|
|||||||
echo " </td></tr>\n";
|
echo " </td></tr>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// image
|
||||||
|
$img = get_screenshot_img($appId);
|
||||||
|
echo "<tr><td align=center colspan=2>$img</td></tr>\n";
|
||||||
|
|
||||||
// display app owner
|
// display app owner
|
||||||
$result = mysql_query("SELECT * FROM appOwners WHERE appId = $appId");
|
$result = mysql_query("SELECT * FROM appOwners WHERE appId = $appId");
|
||||||
if($result && mysql_num_rows($result) > 0)
|
if($result && mysql_num_rows($result) > 0)
|
||||||
@@ -380,7 +396,7 @@ if($appId && !$versionId)
|
|||||||
|
|
||||||
echo " </table>\n"; /* close the table that contains the whole left hand side of the upper table */
|
echo " </table>\n"; /* close the table that contains the whole left hand side of the upper table */
|
||||||
|
|
||||||
//Desc
|
// description
|
||||||
echo " <td class=color2 valign=top width='100%'>\n";
|
echo " <td class=color2 valign=top width='100%'>\n";
|
||||||
echo " <table width='100%' border=0><tr><td width='100%' valign=top><b>Description</b><br>\n";
|
echo " <table width='100%' border=0><tr><td width='100%' valign=top><b>Description</b><br>\n";
|
||||||
echo add_br(stripslashes($data->description));
|
echo add_br(stripslashes($data->description));
|
||||||
@@ -389,20 +405,24 @@ if($appId && !$versionId)
|
|||||||
|
|
||||||
echo html_frame_end("For more details and user comments, view the versions of this application.");
|
echo html_frame_end("For more details and user comments, view the versions of this application.");
|
||||||
|
|
||||||
//display versions
|
// display versions
|
||||||
display_versions($appId,$app->getAppVersionList());
|
display_versions($appId,$app->getAppVersionList());
|
||||||
|
|
||||||
//display bundle
|
// display bundle
|
||||||
display_bundle($appId);
|
display_bundle($appId);
|
||||||
|
|
||||||
// disabled for now
|
// disabled for now
|
||||||
//log_application_visit($appId);
|
//log_application_visit($appId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# We want to see a particular version #
|
||||||
|
#######################################
|
||||||
else if($appId && $versionId)
|
else if($appId && $versionId)
|
||||||
{
|
{
|
||||||
$app = new Application($appId);
|
$app = new Application($appId);
|
||||||
$data = $app->data;
|
$data = $app->data;
|
||||||
if(!$data )
|
if(!$data)
|
||||||
{
|
{
|
||||||
// Oops! application not found or other error. do something
|
// Oops! application not found or other error. do something
|
||||||
errorpage('Internal Database Access Error. No App found.');
|
errorpage('Internal Database Access Error. No App found.');
|
||||||
@@ -432,13 +452,13 @@ else if($appId && $versionId)
|
|||||||
// header
|
// header
|
||||||
apidb_header("Viewing App Version - ".$data->appName);
|
apidb_header("Viewing App Version - ".$data->appName);
|
||||||
|
|
||||||
//cat
|
// cat
|
||||||
display_catpath($app->data->catId);
|
display_catpath($app->data->catId);
|
||||||
|
|
||||||
//set URL
|
// set URL
|
||||||
$appLinkURL = ($ver->webPage) ? "<a href='$ver->webPage'>".substr(stripslashes($ver->webPage),0,30)."</a>": " ";
|
$appLinkURL = ($ver->webPage) ? "<a href='$ver->webPage'>".substr(stripslashes($ver->webPage),0,30)."</a>": " ";
|
||||||
|
|
||||||
//start version display
|
// start version display
|
||||||
echo html_frame_start("","98%","",0);
|
echo html_frame_start("","98%","",0);
|
||||||
|
|
||||||
echo '<tr><td class=color4 valign=top>',"\n";
|
echo '<tr><td class=color4 valign=top>',"\n";
|
||||||
@@ -447,22 +467,21 @@ else if($appId && $versionId)
|
|||||||
echo "<tr class=color1 valign=top><td> <b>Version</b></td><td>".stripslashes($ver->versionName)."</td></tr>\n";
|
echo "<tr class=color1 valign=top><td> <b>Version</b></td><td>".stripslashes($ver->versionName)."</td></tr>\n";
|
||||||
echo "<tr class=color0 valign=top><td> <b>URL</b></td><td>".stripslashes($appLinkURL)."</td></tr>\n";
|
echo "<tr class=color0 valign=top><td> <b>URL</b></td><td>".stripslashes($appLinkURL)."</td></tr>\n";
|
||||||
|
|
||||||
//Rating Area
|
// rating Area
|
||||||
$r_win = rating_stars_for_version($versionId, "windows");
|
$r_win = rating_stars_for_version($versionId, "windows");
|
||||||
$r_fake = rating_stars_for_version($versionId, "fake");
|
$r_fake = rating_stars_for_version($versionId, "fake");
|
||||||
|
|
||||||
echo "<tr class=color1 valign=top><td> <b>Rating</b></td><td> $r_win \n";
|
echo "<tr class=color1 valign=top><td> <b>Rating</b></td><td> $r_win \n";
|
||||||
echo "<br> $r_fake </td></tr>\n";
|
echo "<br> $r_fake </td></tr>\n";
|
||||||
|
|
||||||
//notes
|
// notes
|
||||||
display_notes($appId, $versionId);
|
display_notes($appId, $versionId);
|
||||||
|
|
||||||
//Image
|
// image
|
||||||
$img = get_screenshot_img($appId, $versionId);
|
$img = get_screenshot_img($appId, $versionId);
|
||||||
|
|
||||||
echo "<tr><td align=center colspan=2>$img</td></tr>\n";
|
echo "<tr><td align=center colspan=2>$img</td></tr>\n";
|
||||||
|
|
||||||
// Display all maintainers of this application
|
// display all maintainers of this application
|
||||||
echo "<tr class=color0><td align=left colspan=2><b>Maintainers of this application:</b>\n";
|
echo "<tr class=color0><td align=left colspan=2><b>Maintainers of this application:</b>\n";
|
||||||
echo "<table width=250 border=0>";
|
echo "<table width=250 border=0>";
|
||||||
$other_maintainers = getMaintainersUserIdsFromAppIdVersionId($appId, $versionId);
|
$other_maintainers = getMaintainersUserIdsFromAppIdVersionId($appId, $versionId);
|
||||||
@@ -480,7 +499,7 @@ else if($appId && $versionId)
|
|||||||
}
|
}
|
||||||
echo "</table></td></tr>";
|
echo "</table></td></tr>";
|
||||||
|
|
||||||
// Display the app maintainer button
|
// display the app maintainer button
|
||||||
echo "<tr><td colspan = 2><center>";
|
echo "<tr><td colspan = 2><center>";
|
||||||
if(loggedin())
|
if(loggedin())
|
||||||
{
|
{
|
||||||
@@ -575,7 +594,7 @@ else if($appId && $versionId)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Show How tos
|
// show How tos
|
||||||
$result = mysql_query("SELECT * FROM appNotes WHERE appId = $appId and versionId = $versionId and noteTitle = 'HOWTO'");
|
$result = mysql_query("SELECT * FROM appNotes WHERE appId = $appId and versionId = $versionId and noteTitle = 'HOWTO'");
|
||||||
if($result && mysql_num_rows($result))
|
if($result && mysql_num_rows($result))
|
||||||
{
|
{
|
||||||
@@ -601,24 +620,24 @@ else if($appId && $versionId)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
//TODO: code to view/add user experience record
|
//TODO: code to view/add user experience record
|
||||||
// if(!$versionId)
|
// if(!$versionId)
|
||||||
// {
|
// {
|
||||||
// $versionId = 0;
|
// $versionId = 0;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// Comments Section
|
// Comments Section
|
||||||
view_app_comments($appId, $versionId);
|
view_app_comments($appId, $versionId);
|
||||||
|
|
||||||
}
|
} else
|
||||||
else
|
|
||||||
{
|
{
|
||||||
// Oops! Called with no params, bad llamah!
|
// Oops! Called with no params, bad llamah!
|
||||||
errorpage('Page Called with No Params!');
|
errorpage('Page Called with No Params!');
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
?>
|
||||||
echo p();
|
|
||||||
|
<p> </p>
|
||||||
apidb_footer();
|
|
||||||
|
<?
|
||||||
|
apidb_footer();
|
||||||
?>
|
?>
|
||||||
Reference in New Issue
Block a user