]> granicus.if.org Git - php/commitdiff
rename .php to .inc
authorAntony Dovgal <tony2001@php.net>
Thu, 11 Dec 2008 10:58:14 +0000 (10:58 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 11 Dec 2008 10:58:14 +0000 (10:58 +0000)
all .php files are deleted on `make clean`

Zend/tests/bug46665.phpt
Zend/tests/bug46665_autoload.inc [moved from Zend/tests/bug46665_autoload.php with 100% similarity]

index 994ea8b795098572c43ef2b6a78dc86939749093..8e7fc086dd6b25d6114997ab8ed9fe2bcd513227 100644 (file)
@@ -7,7 +7,7 @@ $baz = '\\Foo\\Bar\\Baz';
 new $baz();
 function __autoload($class) {
     var_dump($class);
-    require __DIR__ .'/bug46665_autoload.php';
+    require __DIR__ .'/bug46665_autoload.inc';
 }
 
 ?>