浏览代码

autoload: include functions.php

Andrew Dolgov 11 年之前
父节点
当前提交
48c1d0c71b
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      include/autoload.php

+ 2 - 0
include/autoload.php

@@ -1,4 +1,6 @@
 <?php
+	require_once "functions.php";
+
 	function __autoload($class) {
 		$class_file = str_replace("_", "/", strtolower(basename($class)));