Viewing file: error_code.php (1.57 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
*
* @copyright (c) 2009 Quoord Systems Limited
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
defined('IN_MOBIQUO') or exit;
$mobiquo_error_code = array(
1 => 'Required paramerter missing',
2 => 'Permission deny',
3 => 'Invalid forum id',
4 => 'Can not get topics from link forum',
5 => 'Topic index out of range',
6 => 'Forum is passworded',
7 => 'Invalid topic id',
8 => 'Unknown user name',
9 => 'Please login first!',
10 => 'No privilege to post on the forum',
11 => 'Can not post on this kind of forum',
12 => 'Forum or topic locked',
13 => 'Can not post continually',
14 => 'Invalid user name',
15 => 'Subject is null',
16 => 'IP is in black list',
17 => 'User can not read on this forum',
18 => 'Need login',
19 => 'User can not reply in this forum',
20 => 'Message does not exist',
21 => 'Private message is not enable in this forum!',
22 => 'No privilege to post or forward message',
23 => 'Can not reply/post topic/message in a short time!',
24 => 'Too many recipients',
25 => 'Recipient does not exist',
26 => 'Post id does not exist',
27 => 'Forum/Topic locked, can not edit',
28 => 'You cannot edit posts in this forum.',
29 => 'You can no longer edit or delete that post.',
30 => 'This post has been locked. You can no longer edit that post.',
31 => 'Sorry but you are not permitted to use the search system.',
99 => 'Unknown error'
);
|