1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-28 06:37:11 +00:00

fix blank character after opening bracket in function calls

This commit is contained in:
Andrew Dolgov
2013-04-17 18:34:18 +04:00
parent 72ff013729
commit a42c55f02b
56 changed files with 1399 additions and 1399 deletions

View File

@@ -1,10 +1,10 @@
<?php
function db_escape_string( $s, $strip_tags = true) {
function db_escape_string($s, $strip_tags = true) {
return Db::get()->escape_string($s, $strip_tags);
}
function db_query( $query, $die_on_error = true) {
function db_query($query, $die_on_error = true) {
return Db::get()->query($query, $die_on_error);
}
@@ -21,7 +21,7 @@ function db_fetch_result($result, $row, $param) {
return Db::get()->fetch_result($result, $row, $param);
}
function db_affected_rows( $result) {
function db_affected_rows($result) {
return Db::get()->affected_rows($result);
}