Display app name in adminAppDataQueue.php when reviewing an appdata
This commit is contained in:
@@ -83,7 +83,10 @@ if (!$_REQUEST['queueId'])
|
|||||||
}
|
}
|
||||||
} else // shows a particular appdata
|
} else // shows a particular appdata
|
||||||
{
|
{
|
||||||
$sQuery = "SELECT * FROM appDataQueue WHERE queueId='".$_REQUEST['queueId']."'";
|
$sQuery = "SELECT appDataQueue.*, appVersion.appId AS appId
|
||||||
|
FROM appDataQueue,appVersion
|
||||||
|
WHERE appVersion.versionId = appDataQueue.versionId
|
||||||
|
AND queueId='".$_REQUEST['queueId']."'";
|
||||||
$hResult = query_appdb($sQuery);
|
$hResult = query_appdb($sQuery);
|
||||||
$obj_row = mysql_fetch_object($hResult);
|
$obj_row = mysql_fetch_object($hResult);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user