[aur-dev] [PATCH] Remove extraneous quote in translator.inc.php
Mark Weiman
mark.weiman at markzz.com
Thu Nov 10 02:48:30 UTC 2016
The quote is a leftover of legacy code and was meant to be removed by
commit e171f6f (Migrate all DB code to use PDO, 2012-08-08).
Signed-off-by: Mark Weiman <mark.weiman at markzz.com>
---
web/lib/translator.inc.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/lib/translator.inc.php b/web/lib/translator.inc.php
index d53bd53..58648c4 100644
--- a/web/lib/translator.inc.php
+++ b/web/lib/translator.inc.php
@@ -106,7 +106,7 @@ function set_lang() {
$dbh = DB::connect();
$q = "SELECT LangPreference FROM Users, Sessions ";
$q.= "WHERE Users.ID = Sessions.UsersID ";
- $q.= "AND Sessions.SessionID = '";
+ $q.= "AND Sessions.SessionID = ";
$q.= $dbh->quote($_COOKIE["AURSID"]);
$result = $dbh->query($q);
--
2.10.2
More information about the aur-dev
mailing list