Not much has changed. The WEButler does everything it should. An update is still necessary. Over time, errors have crept in, e.g. due to new PHP versions. These have been corrected.
The CKEditor has been updated to version 4.16.
Flash is dead, the flash plugin has been removed from the CKEditor.
The measuring tool has been removed from the CKEditor. Measuring distances or sizes no longer makes sense in times of responsive design.
The Google map has been removed and replaced by the Open Street Map or Leaflet Map.
FPDF is obsolete and has been removed. If you use it, please copy from an older version or switch to MPDF.
The filename "index.ext" for the start page has been removed from the url, this is better for search engine optimization.
To prevent spam, a honeypot can now be set in every form:
<?PHP
$honeypot_formid = '_DESIGNATION_';
require_once($webutlercouple->config['server_path'].'/includes/forms/honeypot/index.php');
?>
The PHP script is set anywhere within the form. The honeypot_formid variable is used to set a separate honeypot for each form.
The window is loaded automatically, but can be deactivated in globalvars.php if necessary.
$webutler_config['cookie_consents'] = "0";
The new CKEditor plugin has identical features. If you use a Google map, simply delete it from the page and insert a leaflet map in the editor.
The scaling of images to the size of a grid element with 100% height is now taken over by Javascript.
The CSS class name "imgfullheight" was named "fullsizeimage" replaced and is assigned directly to the IMG and no longer to a parent DIV.
The source code in the pages has to be adapted, from:
<div class="imgfullheight">
<img src="path/to/image.jpg" />
</div>
to:
<img class="fullsizeimage" src="path/to/image.jpg" />