summaryrefslogtreecommitdiffstats
path: root/db/itemmapper.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-06 17:58:47 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-06 17:58:47 +0200
commite2381ea22cfd3fc1ab6b6c8e472740005ad02f87 (patch)
tree1d726d81da2db6b3a063adaa4ef8e0b9e67f242a /db/itemmapper.php
parent050d866f546f380ad986b6da26e6871a59d17a2b (diff)
typo fix
Diffstat (limited to 'db/itemmapper.php')
-rw-r--r--db/itemmapper.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/db/itemmapper.php b/db/itemmapper.php
index e2850e725..2ba0a7f2c 100644
--- a/db/itemmapper.php
+++ b/db/itemmapper.php
@@ -72,11 +72,11 @@ class ItemMapper extends Mapper implements IMapper {
// now im gonna slowly stick them in the query, be careful!
return $this->makeSelectQuery(
-
+
// WARNING: this is a desperate attempt at making this query work
// because prepared statements dont work. This is a possible
- // SQL INJECTION RISK WHEN MODIFIED WITHOUT THOUGH.
- // think twice when chaning this
+ // SQL INJECTION RISK WHEN MODIFIED WITHOUT THOUGHT.
+ // think twice when changing this
'AND ((`items`.`status` & ' . $status . ') = ' . $status . ') ' .
$prependTo
);
@@ -101,8 +101,8 @@ class ItemMapper extends Mapper implements IMapper {
'AND `feeds`.`user_id` = ? ' .
// WARNING: this is a desperate attempt at making this query work
// because prepared statements dont work. This is a possible
- // SQL INJECTION RISK WHEN MODIFIED WITHOUT THOUGH.
- // think twice when chaning this
+ // SQL INJECTION RISK WHEN MODIFIED WITHOUT THOUGHT.
+ // think twice when changing this
'WHERE ((`items`.`status` & ' . StatusFlag::STARRED . ') = ' .
StatusFlag::STARRED . ')';