Files
ops-Gazelle/sections/bookmarks/add.php

11 lines
177 B
PHP

<?php
authorize();
$bookmark = new \Gazelle\Bookmark;
try {
$bookmark->create($LoggedUser['ID'], $_GET['type'], (int)$_GET['id']);
}
catch (Exception $e) {
error(0);
}