qipsmiles исправляем ошибку плагина для WordPress

После перехода на php 7.2, в плагине qipsmiles для WordPress появляется уведомление об ошибки в работе плагина и выглядит оно так:
Warning: Use of undefined constant qips_replace_smiles — assumed ‘qips_replace_smiles’

Warning: Use of undefined constant qips_replace_smiles - assumed 'qips_replace_smiles' (this will throw an Error in a future version of PHP) in /var/www/../wp-content/plugins/qipsmiles/qipsmiles.php on line 50
Warning: Use of undefined constant qips_replace_smiles - assumed 'qips_replace_smiles' (this will throw an Error in a future version of PHP) in /var/www/maliar/data/www/../wp-content/plugins/qipsmiles/qipsmiles.php on line 51

Видим что проблемы в файле qipsmiles.php в 50 и 51 строке, открываем его, ищем данные строки:

if(SMILES_INCLUDED) {
add_filter('the_content', qips_replace_smiles); 
add_filter('comment_text', qips_replace_smiles);

Заменить на:

if(SMILES_INCLUDED) {
add_filter('the_content', 'qips_replace_smiles'); 
add_filter('comment_text', 'qips_replace_smiles');

Как вы уже заметили мы просто добавили кавычки, привели в нужный вид константы php.