Okiewan:
open warn.php (2)
find: (1)
PHP Code:
require('./global.php');
above it add:
PHP Code:
$temlatesused.= ",warn_error_postwarned";
find: (2)
PHP Code:
if(empty($info[postid])) {
eval("standarderror(\"".gettemplate('warn_error_postnoexist')."\");");
exit;
}
Under it add:
PHP Code:
$getwarn = $DB_site->query_first("
SELECT postid, type
FROM warnings_log
WHERE postid='$info[postid]'");
if($getwarn[postid] != "") {
eval("standarderror(\"".gettemplate('warn_error_postwarned')."\");");
exit;
}
Create a new template called:
warn_error_postwarned
-------
Sorry $bbuserinfo[username], but $info[username] was already wanred on this post for $getwarn[type]. Please select a different post to warn.
And that should do the trick Okiewan... sorry i didn't test it yet... just made it up
Capt Prrune sorry to hear ;\ i thought the instrucstions stated that... besides the systems aren't compatible at all... last system was based on pure warnings no matter what the reason.... this one has a warning points system... regards...
g-force2k2