mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
9 lines
262 B
PHP
9 lines
262 B
PHP
<?
|
|
// perform the back end of subscribing to topics
|
|
authorize();
|
|
|
|
if (!in_array($_GET['page'], array('artist', 'collages', 'requests', 'torrents')) || !is_number($_GET['pageid'])) {
|
|
error(0);
|
|
}
|
|
|
|
Subscriptions::subscribe_comments($_GET['page'], $_GET['pageid']); |