summaryrefslogtreecommitdiff
path: root/_test/lib
diff options
context:
space:
mode:
authorAndreas Gohr <gohr@cosmocode.de>2005-11-03 12:47:01 +0100
committerAndreas Gohr <gohr@cosmocode.de>2005-11-03 12:47:01 +0100
commit5646f69041af08c6131237b27bd8adedd4a717e7 (patch)
tree0f2f7edef7cfb563bdc4e9b893ca5e816036f970 /_test/lib
parent0dc92c6f78995331021c3b8c6a889913cf3f7de3 (diff)
downloadrpg-5646f69041af08c6131237b27bd8adedd4a717e7.tar.gz
rpg-5646f69041af08c6131237b27bd8adedd4a717e7.tar.bz2
a small CSS hack to make the buttons work in IE5.2 Mac
darcs-hash:20051103114701-6e07b-cb87eca037066a21f59da7f14e65986873607e29.gz
Diffstat (limited to '_test/lib')
-rw-r--r--_test/lib/testmanager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/_test/lib/testmanager.php b/_test/lib/testmanager.php
index 70a2cd979..c23d18441 100644
--- a/_test/lib/testmanager.php
+++ b/_test/lib/testmanager.php
@@ -9,9 +9,9 @@ define('TEST_CASES',realpath(dirname(__FILE__).'/../cases'));
// try to load runkit extension
if (!extension_loaded('runkit')) {
if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN')) {
- dl('php_runkit.dll');
+ @dl('php_runkit.dll');
} else {
- dl('runkit.so');
+ @dl('runkit.so');
}
}