Quellcode durchsuchen

autoload: include functions.php

Andrew Dolgov vor 11 Jahren
Ursprung
Commit
48c1d0c71b
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  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)));