summaryrefslogtreecommitdiffstats
path: root/system/application/models/file_mod.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/application/models/file_mod.php')
-rw-r--r--system/application/models/file_mod.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php
index 23c3002af..769273f2f 100644
--- a/system/application/models/file_mod.php
+++ b/system/application/models/file_mod.php
@@ -30,7 +30,8 @@ class File_mod extends Model {
$sql = '
SELECT id
FROM `files`
- WHERE `id` = ?';
+ WHERE `id` = ?
+ LIMIT 1';
$query = $this->db->query($sql, array($id));
if ($query->num_rows() == 1) {
@@ -45,7 +46,8 @@ class File_mod extends Model {
$sql = '
SELECT hash,filename
FROM `files`
- WHERE `id` = ?';
+ WHERE `id` = ?
+ LIMIT 1';
$query = $this->db->query($sql, array($id));
if ($query->num_rows() == 1) {
@@ -74,7 +76,8 @@ class File_mod extends Model {
$sql = '
SELECT id
FROM `files`
- WHERE `hash` = ?';
+ WHERE `hash` = ?
+ LIMIT 1';
$query = $this->db->query($sql, array($hash));
if ($query->num_rows() == 0) {