summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohan Cwiklinski <johan@x-tnd.be>2012-09-29 10:04:54 +0200
committerRemi Collet <fedora@famillecollet.com>2012-09-29 10:30:12 +0200
commit44bc0673599b56977f97370976d92f5d05ca720e (patch)
tree3e24a486e15b63bc75d86ea0838fa31036658001 /include
parent578c3f5a2414ee8b216652b5d9ccfbaf4303bf6d (diff)
PEAR coding standards ;)
Diffstat (limited to 'include')
-rw-r--r--include/main.php6
1 files changed, 3 insertions, 3 deletions
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");
+?>