summaryrefslogtreecommitdiff
path: root/include/autoload.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-24 09:05:56 +0400
committerAndrew Dolgov <[email protected]>2013-04-24 09:05:58 +0400
commit48c1d0c71bf81c1958baf6ed8d9169f5462d2e24 (patch)
tree81cdd20fda53e14826e4c54f3eca62b95896538f /include/autoload.php
parent50d4b30b338bae62fd3eb8692ba6b9b6e8e53f26 (diff)
autoload: include functions.php
Diffstat (limited to 'include/autoload.php')
-rw-r--r--include/autoload.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/autoload.php b/include/autoload.php
index 40c63d547..505b44477 100644
--- a/include/autoload.php
+++ b/include/autoload.php
@@ -1,4 +1,6 @@
<?php
+ require_once "functions.php";
+
function __autoload($class) {
$class_file = str_replace("_", "/", strtolower(basename($class)));