diff options
author | Nuno Lopes <nlopess@php.net> | 2006-11-09 16:38:55 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-11-09 16:38:55 +0000 |
commit | 9b04c0d407d195d13efff3ddb54fec75a92bee00 (patch) | |
tree | d9d7dd73f0f7bc5cb35f904888442484e14b73ee | |
parent | 667f469349b09a5232311c4429bac552ce974d8b (diff) | |
download | php-git-9b04c0d407d195d13efff3ddb54fec75a92bee00.tar.gz |
MFB: fix test
-rw-r--r-- | ext/filter/tests/033_run.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/filter/tests/033_run.inc b/ext/filter/tests/033_run.inc index c77d888ac4..e3b67387ca 100644 --- a/ext/filter/tests/033_run.inc +++ b/ext/filter/tests/033_run.inc @@ -1,7 +1,12 @@ <?php +if (function_exists('setlocale')) { + setlocale(LC_ALL, 'C'); +} + function test($data) { return strtoupper($data); } + $data = array( "PHP", "1", |