Merge branch 'seeddms-4.3.x' into seeddms-5.0.x

This commit is contained in:
Uwe Steinmann 2017-02-09 17:49:21 +01:00
commit 2f0cb09e31

View File

@ -213,6 +213,16 @@ class SeedDMS_Core_DatabaseAccess {
return $this->_conn->quote($text);
} /* }}} */
/**
* Replace back ticks by '"'
*
* @param string text
* @return string sanitized string
*/
function rbt($text) { /* {{{ */
return str_replace('`', '"');
} /* }}} */
/**
* Execute SQL query and return result
*