1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fixed typo in skipif error message

This commit is contained in:
Markus Staab
2016-12-05 20:57:03 +01:00
committed by Christoph M. Becker
parent 3c8c347fa7
commit dd77116fb0

View File

@@ -2,7 +2,7 @@
Error message handling (with ZendOpcache)
--SKIPIF--
<?php
if (!extension_loaded("Zend Opcache")) die("skip Zend Opcache is loaded");
if (!extension_loaded("Zend Opcache")) die("skip Zend Opcache is not loaded");
?>
--FILE--
<?php