2 /* vim: set expandtab sw=4 ts=4 sts=4: */
9 if (! defined('PHPMYADMIN')) {
16 * Returns upload status.
18 * This is implementation when no webserver support exists, so it returns just zeroes.
20 function PMA_getUploadStatus($id) {
24 if (trim($id) == "") {
27 if (! array_key_exists($id, $_SESSION[$SESSION_KEY])) {
28 $_SESSION[$SESSION_KEY][$id] = array(
37 $ret = $_SESSION[$SESSION_KEY][$id];