Quote:
Originally Posted by Lieva
It now supports:
- Enable/Disable by forum
-- On/Off by forum
|
The on/off only stops displaying the history log in those forums. It does not stop actual logging into the database. You need to wrap a conditional around the code in the plugin POST-HIST: record_edits to stop logging other forums (this can consume quite some space and may be an issue for some).
Code:
if($foruminfo['histstatus'] == 1){
..
..
and close the whole block:
}
Lieva, histstatus is a yes/no toggle right? I can change that to boolean/tinychar or something like that in the db?
Quote:
- Indicates who made the edit (if it wasn't the original author)
|
The field is in the database, but no info is stored there. I can't find code to do it either. VB 3.5 also has 100 positions to store usenames, not 50 anymore.
It's a great hack that has many possible applications: thanks Lieva.
P.S. maybe I just wrecked my installation and encounter errors that aren't there
Logged the id and name of the editor now.