diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-03-16 17:31:20 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-03-16 18:03:31 +0100 |
commit | 3715f4a81a22232ce268efced31e1893eff7d043 (patch) | |
tree | 18fabab277ca6a718f8fbe0c823b114ed117f804 /system/application/models/file_mod.php | |
parent | 298af46f9e95a7ab5bc7ce0a519e9a930a9c8bfa (diff) |
fix message when delete password is wrong
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'system/application/models/file_mod.php')
-rw-r--r-- | system/application/models/file_mod.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php index 0bc12c5b2..2d7574a60 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -98,12 +98,17 @@ class File_mod extends Model { WHERE `id` = ? AND password = ? LIMIT 1'; - $query = $this->db->query($sql, array($id, $password)); + $this->db->query($sql, array($id, $password)); + + if($this->id_exists($id)) { + return false; + } if($this->unused_file($filedata['hash'])) { unlink($this->file($filedata['hash'])); @rmdir($this->folder($filedata['hash'])); } + return true; } private function random_id($min_length, $max_length) |