From 44bc0673599b56977f97370976d92f5d05ca720e Mon Sep 17 00:00:00 2001 From: Johan Cwiklinski Date: Sat, 29 Sep 2012 10:04:54 +0200 Subject: PEAR coding standards ;) --- include/main.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/main.php b/include/main.php index 5b66836..8134307 100644 --- a/include/main.php +++ b/include/main.php @@ -60,10 +60,10 @@ if (!defined('CLIONLY')) { * * @return void */ -function my_autoload($classname) +function myAutoload($classname) { include dirname(__FILE__).'/../class/'.$classname.'.php'; } -spl_autoload_register("my_autoload"); -?> \ No newline at end of file +spl_autoload_register("myAutoload"); +?> -- cgit