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/DOMHelper.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/class/DOMHelper.php b/class/DOMHelper.php
index 7d1ec07..4ffe735 100644
--- a/class/DOMHelper.php
+++ b/class/DOMHelper.php
@@ -1,12 +1,12 @@
 <?php
 class DOMHelper {
 	static function ltrim($node) {
-		while(($node->firstChild instanceof DOMElement) && $node->firstChild->tagName == 'br' && $node->lastChild->getAttribute('auto')=='1') {
+		while(($node->firstChild instanceof DOMElement) && $node->firstChild->tagName == 'br' && $node->firstChild->getAttribute('auto')=='1') {
 			$node->removeChild($node->firstChild);
 		}
 		
 		if($node->firstChild instanceof DOMElement) {
-			self::ltrim($node->firstChid);
+			self::ltrim($node->firstChild);
 		}
 	}
 	

--
Gitblit v1.9.1