clipbucket/upload/channels.php

21 lines
483 B
PHP
Raw Normal View History

2013-10-07 12:17:06 +00:00
<?php
2016-02-26 09:04:37 +00:00
/**
* File: Channels
* Description: Used to display list of channels (users)
* @author: Arslan Hassan, Saqib Razzaq
* @since: 2007
* @website: clip-bucket.com
* @modified: Feb 26, 2016 ClipBucket 2.8.1 [ Saqib Razzaq ]
*/
define("THIS_PAGE",'channels');
define("PARENT_PAGE",'channels');
require 'includes/config.inc.php';
global $hlp;
$pages->page_redir();
$userquery->perm_check('view_channels',true);
$hlp->channels();
display_it();
2013-10-07 12:17:06 +00:00
?>