Firstly, I apologise if this has already been posted, I couldn't see it in the 56+ pages.
If you're having the DEPRECATED error being displayed problem, then there's a simple way to fix this. This does NOT fix the problem, all it does is tell php to stop reporting the problem.
Open the following files:
mgc_cb_evo.php
mgc_cb_evo_ajax.php
And change this line (Line 4):
error_reporting(E_ALL & ~E_NOTICE);
To this:
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_USER_DEPRECATED);
This little code fix works fine.
Demo
Cheers,
(php version: 5.3.0)