Quote:
1.3.1
[+] The checkbox "save copy" is now disabled on 3.8.x, since 3.8.x already has such a feature.
|
I can't figure why but this one doesn't work.
Tested on several forums. Even clean one.
Edit:
Found
Code:
<plugin active="0">
PHP Code:
<plugin active="0">
<title>APO: Disable Save Copy Feature on 3.8.x</title>
<hookname>init_startup</hookname>
<phpcode><![CDATA[// fetch styling libraries
require_once(DIR . '/includes/adminfunctions_template.php');
// disable save copy feature
if (!is_newer_version('3.8.0', $vbulletin->options['templateversion']))
{
define('ADVPMOPTIONS_NO_SAVECOPY', true);
}]]></phpcode>
</plugin>
+
This one also have to be fixed:
https://vborg.vbsupport.ru/showthread.php?p=1839416