From 79d1cc1cc5c78b63daaf7bfb1446541dd878a1d7 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Mon, 25 Jun 2012 19:12:05 +0000 Subject: [PATCH] Usunięcie pustych linii na końcach plików. --- class/BotSession.php | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/class/BotSession.php b/class/BotSession.php index a70734e..9c7a5b0 100644 --- a/class/BotSession.php +++ b/class/BotSession.php @@ -72,7 +72,9 @@ } } catch(Exception $e) { - @unlink(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite'); + if(file_exists(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite')) { + @unlink(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite'); + } throw $e; } } -- Gitblit v1.9.1