mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 10:19:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@241 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
61b7b47d6c
commit
bec327d337
7 changed files with 15 additions and 31 deletions
|
|
@ -19,9 +19,11 @@
|
|||
function getSpammerList() {
|
||||
$oDB = &DB::getInstance();
|
||||
$args->sort_index = "regdate";
|
||||
$args->list_count = 50;
|
||||
$args->page = Context::get('page')?Context::get('page'):1;
|
||||
return $oDB->executeQuery('spamfilter.getSpammerList', $args);
|
||||
$output = $oDB->executeQuery('spamfilter.getSpammerList', $args);
|
||||
if(!$output->data) return;
|
||||
if(!is_array($output->data)) return array($output->data);
|
||||
return $output->data;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue