Translated using Weblate (German)
[phpmyadmin.git] / tbl_recent_favorite.php
blob92b2d594781cf41f4be368ca0bfee2e926fc6f4c
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Browse recent and favourite tables chosen from navigation
6 * @package PhpMyAdmin
7 */
8 declare(strict_types=1);
10 use PhpMyAdmin\RecentFavoriteTable;
12 require_once 'libraries/common.inc.php';
14 RecentFavoriteTable::getInstance('recent')
15 ->removeIfInvalid($_REQUEST['db'], $_REQUEST['table']);
17 RecentFavoriteTable::getInstance('favorite')
18 ->removeIfInvalid($_REQUEST['db'], $_REQUEST['table']);
20 require 'sql.php';