mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
11 lines
177 B
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);
|
|
}
|