2 /* vim: set expandtab sw=4 ts=4 sts=4: */
8 if (! defined('PHPMYADMIN')) {
15 * Returns upload status.
17 * This is implementation when no webserver support exists, so it returns just zeroes.
19 function PMA_getUploadStatus($id) {
23 if (trim($id) == "") {
26 if (! array_key_exists($id, $_SESSION[$SESSION_KEY])) {
27 $_SESSION[$SESSION_KEY][$id] = array(
36 $ret = $_SESSION[$SESSION_KEY][$id];