make prepare method public (has to be recoded with new db driver)

Dieser Commit ist enthalten in:
o.pinke 2021-08-23 15:33:24 +02:00
Ursprung 60e5ebd69d
Commit cac2476447
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -416,7 +416,7 @@ abstract class DB_Sql_Abstract {
* </pre>
* @return string
*/
protected function _prepareQueryf($sQuery, array $aArgs) {
public function _prepareQueryf($sQuery, array $aArgs) {
if (count($aArgs) > 0) {
$aArgs = array_map(array($this, 'escape'), $aArgs);
array_unshift($aArgs, $sQuery);