diff options
author | Rui Hirokawa <hirokawa@php.net> | 2002-10-09 12:54:52 +0000 |
---|---|---|
committer | Rui Hirokawa <hirokawa@php.net> | 2002-10-09 12:54:52 +0000 |
commit | 382a92cc5aa2603cf5ec5d0b14a5b653ad4ffe13 (patch) | |
tree | e2cd6e24268cbb7a64501c89b7cb1bac395192ef | |
parent | 0ecf32f75044c42113acdd389dab95e20dd1cf59 (diff) | |
download | php-git-382a92cc5aa2603cf5ec5d0b14a5b653ad4ffe13.tar.gz |
added @ to suppress a notice.
-rw-r--r-- | ext/iconv/tests/translit.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/iconv/tests/translit.phpt b/ext/iconv/tests/translit.phpt index c844fcd6e5..3a941ca3bf 100644 --- a/ext/iconv/tests/translit.phpt +++ b/ext/iconv/tests/translit.phpt @@ -1,7 +1,7 @@ --TEST-- ICONV: LIBICONV transliteration (bug #16069) --SKIPIF-- -<?php include( 'skipif.inc' ); if( iconv('CP932', 'EUC-JP//TRANSLIT', "\x87\x6d") == '' ) die("skip\n"); ?> +<?php include( 'skipif.inc' ); if( @iconv('CP932', 'EUC-JP//TRANSLIT', "\x87\x6d") == '' ) die("skip\n"); ?> --POST-- --GET-- --FILE-- |