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

---
 test.php |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/test.php b/test.php
index 03dbbcd..3af958d 100644
--- a/test.php
+++ b/test.php
@@ -22,6 +22,8 @@
 test('magic_quotes_gpc = Off', (get_magic_quotes_gpc() == 0));
 test('allow_url_fopen = On', (ini_get('allow_url_fopen') == 1));
 test('setlocale(pl_PL.UTF8)', setlocale(LC_CTYPE, 'pl_PL.UTF8', 'pl_PL', 'polish', 'plk'));
+test('proc_open(\'aspell\')', ($p=@proc_open('aspell', array(array('pipe', 'r'), array('pipe', 'w'), array('file', '/dev/null', 'w')), $pipe)) !== FALSE);
+@proc_close($p);
 
 echo '<tr> <th class="head" colspan="2">Rozszerzenia PHP</th> </tr>
 ';
@@ -49,7 +51,9 @@
 testdir('./data/rss');
 testdir('./data/tv');
 testdir('./data/tv/cache');
-testdir('./db');
+if(is_dir($db)) {
+	testdir('./db');
+}
 testdir('./database');
 
 echo '</table>';

--
Gitblit v1.9.1