Check you don't have error reporting code on the page - deprecated warnings are only warnings and won't affect the way the site works at the moment, but at some point in the future if the PHP version is upgraded they will.
For now, remove any code that looks like this and error messages will disappear:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>