Quote:
Originally Posted by pipin
any hint about this, Mystics?
|
I don't know this hack...maybe you have to insert this code in one of the plugins/hooks added by the other hack:
Code:
$this->validfields['lastthreadprefix'] = array(TYPE_STR, REQ_NO);
Quote:
Originally Posted by machtzu
Mystics
Is it possible search just for Prefixs? I have a forum where rather then create hundreds of sub-forums I have used your prefix mod but I need to be able to select groups of messages by specific prefix. Is that possible?
|
No, maybe in a next version.
Quote:
Originally Posted by Larrysw
I'm getting the fowling error:
Code:
Fatal error: Call to undefined function: verify_thread_prefix() in /home/rdsx667/public_html/forum/includes/class_dm_threadpost.php(1494) : eval()'d code on line 1
|
Re-upload includes/functions_threadprefix.php and check your
global_start hook:
Code:
require_once(DIR . '/includes/functions_threadprefix.php');
if (THIS_SCRIPT == 'moderator' AND $_REQUEST['do'] == 'manageprefix')
{
manage_thread_prefixes($foruminfo);
}
You can also try moving this code to the hook
init_startup.