SetDefinition in termsofservice.php not defined
The popup, generated by termsofservice.php, shows that SetDefinition is not defined: termsofservice.php only knows the "old" way of setting definitions, using $Context->Dictionary.
It is easy to repair: just add
to termsofservice.php
It is easy to repair: just add
function SetDefinition($Key, $Value) {
$this->Dictionary[$Key] = $Value;
}
to termsofservice.php
0
Comments
However, you can still set $Dictionary[$Key] directly, it is not deprecated. It just should not be used in extension (or it would overwrite an entry from conf/language.php).
What do you need it for? The extensions are not loaded for the terms of services page.