Bug in EventON Prevents Datechanges

- Posted in Uncategorized by

Today I discovered a bug in the Wordpress Plugin EventON, that malforms the Date-View.

Cause:

The Cause for this bug is, that jquery gets loaded over http, instead of https. So if your site is running on https, the Script gets blocked, due to the mixed-content Policy, that all major browsers use.

Resolution:

In the file wp-content/plugins/eventON/admin/eventon-admin-init.php, remove at line 948 the http, so only the // is left. This way, the browser loads it over http, if the page itself is beeing loaded over http and over https, if the page got requested over https.

Final:

wp_enqueue_style("jquery-ui-css", "//ajax.googleapis.com/ajax/libs/jqueryui/{$jquery_version}/themes/smoothness/jquery-ui.min.css");

The same is also true for the eventon-action-user - Plugin. It may be true for all Plugins of this author, but we are only using these two Plugins.