This repository has been archived on 2023-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
Teacher_Helper_System/phpMyAdmin4.8.5/tbl_recent_favorite.php
2022-05-08 02:37:00 +08:00

20 lines
452 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Browse recent and favourite tables chosen from navigation
*
* @package PhpMyAdmin
*/
use PhpMyAdmin\RecentFavoriteTable;
require_once 'libraries/common.inc.php';
RecentFavoriteTable::getInstance('recent')
->removeIfInvalid($_REQUEST['db'], $_REQUEST['table']);
RecentFavoriteTable::getInstance('favorite')
->removeIfInvalid($_REQUEST['db'], $_REQUEST['table']);
require 'sql.php';