Disable page versioning in WackoWiki
Hi Admin,
How can I disable page versioning in WackoWiki so that the permalink does not appear to change when a page is updated?
Thank you.
Comments
Log in or create an account to post a comment.
Hi Admin,
How can I disable page versioning in WackoWiki so that the permalink does not appear to change when a page is updated?
Thank you.
Re: Disable page versioning in WackoWiki
if (!isset($version)) $version = 1;
to:
if (!isset($version)) $version = 0;
ChatGPT helped me find this solution :D.
Re: Disable page versioning in WackoWiki