From: Hypolite Petovan Date: Sat, 21 Jul 2018 13:17:10 +0000 (-0400) Subject: Remove dbesc() and dba_timer() function declarations X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6141023640df2e84c55b179404b77ab2d8cd183c;p=friendica.git Remove dbesc() and dba_timer() function declarations --- diff --git a/include/dba.php b/include/dba.php index bccd9792be..86ca2ac2de 100644 --- a/include/dba.php +++ b/include/dba.php @@ -2,14 +2,6 @@ use Friendica\Database\DBA; -function dbesc($str) { - if (DBA::$connected) { - return(DBA::escape($str)); - } else { - return(str_replace("'","\\'",$str)); - } -} - /** * @brief execute SQL query with printf style args - deprecated * @@ -49,7 +41,3 @@ function q($sql) { return $data; } - -function dba_timer() { - return microtime(true); -}