From 1a5b215058b94af0a90df2c6c2f87960429e6aaf Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 27 Aug 2012 14:53:50 +0000
Subject: [PATCH] 1. Uzupełnienie instrukcji aktualizacji w zawiązku ze zmianami w bocie, 2. Poprawienie błędnego wywołania metody httpQuery() w pliku ./class/BotAPIGG.php, 3. Dodanie metody getPublicData() do klasy BotAPIGG, 4. Poprawienie błędnego warunku w pliku ./test.php, 5. Dodanie wywołania libxml_use_internal_errors() do ./class/std.php

---
 class/BotMessageGG.php |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/class/BotMessageGG.php b/class/BotMessageGG.php
index fd5ee9d..aa07ac8 100644
--- a/class/BotMessageGG.php
+++ b/class/BotMessageGG.php
@@ -15,6 +15,15 @@
 		$this->user = new BotUser($uid.'/'.$_GET['to']);
 		$this->session = new BotSession($uid);
 		$this->setText(file_get_contents('php://input'));
+		
+		if(isset($_GET['images'])) {
+			$images = explode(',', $_GET['images']);
+			foreach($images as $image) {
+				if(strlen($image) == 16 && ctype_xdigit($image)) {
+					$this->images[] = new BotImageGG($image);
+				}
+			}
+		}
 	}
 }
 ?>
\ No newline at end of file

--
Gitblit v1.9.1