From 7954aac6c4bd1c481c1fb6ff133e70584521c706 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sun, 08 Jul 2012 16:45:07 +0000
Subject: [PATCH] Poprawka pogody - adres do ikony w arkuszu XML od Google jest względny, podczas gdy skrypt zakładał bezwzględny (http://...).
---
class/BotSession.php | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/class/BotSession.php b/class/BotSession.php
index 20088e3..cec7f45 100644
--- a/class/BotSession.php
+++ b/class/BotSession.php
@@ -54,6 +54,9 @@
);
$files = glob(BOT_TOPDIR.'/db/*/'.$this->user_struct['user'].'.ggdb');
+ if(!$files) {
+ return;
+ }
$this->PDO->beginTransaction();
$st = $this->PDO->prepare('INSERT OR REPLACE INTO data (class, name, value) VALUES (?, ?, ?)');
@@ -149,4 +152,4 @@
$st->execute(array($this->class));
}
}
-?>
+?>
\ No newline at end of file
--
Gitblit v1.9.1