X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fwrapper-functions.php;h=cee610df471d40f836d541a06e9e6907d6a30147;hp=c91f93e88c2ff2dacb6ec88956f376df6c1f8ae7;hb=4b7f401f2a4680ae46ca41c57f749cfe35163660;hpb=740ebc7e0fa047159dc57a3a4bf7365c69ad9e17 diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index c91f93e88c..cee610df47 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -956,18 +956,6 @@ function getHttpStatus () { return $GLOBALS['http_status']; } -// Compiles config entries for SQL queries -function compileSqlConfig ($sqlString) { - // Replace all - foreach (array('_MYSQL_PREFIX', '_TABLE_TYPE') as $configEntry) { - // "Compile" it - $sqlString = str_replace('{?' . $configEntry . '?}', getConfig($configEntry), $sqlString); - } // END - foreach - - // Return the compiled SQL string - return $sqlString; -} - // Setter for 'is_template_html' function enableTemplateHtml ($enable = true) { $GLOBALS['is_template_html'] = (bool) $enable;