mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 13:42:04 +00:00
Merge branch 'seeddms-4.3.x' into seeddms-5.0.x
This commit is contained in:
commit
2f0cb09e31
|
@ -213,6 +213,16 @@ class SeedDMS_Core_DatabaseAccess {
|
||||||
return $this->_conn->quote($text);
|
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
|
* Execute SQL query and return result
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user