1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 19:44:09 +02:00

Catch any debugger errors that could occur during Github sync. Added more deprecated items to the log.

This commit is contained in:
Cameron
2020-12-22 09:59:39 -08:00
parent 3f8e043998
commit 881670d92c
4 changed files with 17 additions and 26 deletions

View File

@@ -6096,42 +6096,28 @@ class textparse {
public function editparse($text, $mode = 'off')
{
if(E107_DBG_DEPRECATED)
{
e107::getDebug()->logDeprecated();
}
trigger_error('<b>'.__METHOD__.' is deprecated. Use e107::getParser()->toForm($text) instead. ', E_USER_DEPRECATED);
return e107::getParser()->toForm($text);
}
public function tpa($text, $mode = '', $referrer = '', $highlight_search = false, $poster_id = '')
{
if(E107_DBG_DEPRECATED)
{
e107::getDebug()->logDeprecated();
}
trigger_error('<b>'.__METHOD__.' is deprecated. Use e107::getParser()->toHTML($text) instead. ', E_USER_DEPRECATED);
return e107::getParser()->toHTML($text, true, $mode, $poster_id);
}
public function tpj($text)
{
if(E107_DBG_DEPRECATED)
{
e107::getDebug()->logDeprecated();
}
trigger_error('<b>'.__METHOD__.' is deprecated. ', E_USER_DEPRECATED);
return $text;
}
public function formtpa($text, $mode = '')
{
if(E107_DBG_DEPRECATED)
{
e107::getDebug()->logDeprecated();
}
trigger_error('<b>'.__METHOD__.' is deprecated. Use e107::getParser()->toDB($text) instead. ', E_USER_DEPRECATED);
unset($mode); // keep PHPStorm happy
@@ -6140,11 +6126,7 @@ class textparse {
public function formtparev($text)
{
if(E107_DBG_DEPRECATED)
{
e107::getDebug()->logDeprecated();
}
trigger_error('<b>'.__METHOD__.' is deprecated. Use e107::getParser()->toForm($text) instead. ', E_USER_DEPRECATED);
return e107::getParser()->toForm($text);
}