rename .php to .inc

all .php files are deleted on `make clean`
This commit is contained in:
Antony Dovgal 2008-12-11 10:58:14 +00:00
parent 8496060286
commit 2cadc421ae
2 changed files with 1 additions and 1 deletions

View 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';
}
?>