Zpanel

crazy_pi4

Registered
като вляза в Zpanel и където и да отида в която и да е страница най-отгоре ми пише
Код:
Warning: Missing argument 2 for CheckModule(), called in C:\Documents and Settings\Agent007\My Documents\crazy\programs\AppServ\www\ZPanel\v25b10\zpanel.php on line 20 and defined in C:\Documents and Settings\Agent007\My Documents\crazy\programs\AppServ\www\ZPanel\v25b10\includes\functions.php on line 65

каква е тая грешка?!?
 
Не бе човек ти не ме разбра дай ми от 60 до 70 ред от functions.php и от 15 до 25 от zpanel.php
 
Zpanel.php

Код:
15. $OnlineUsers = mysql_query($query_OnlineUsers, $Customer_Database) or die(mysql_error());
16. $row_OnlineUsers = mysql_fetch_assoc($OnlineUsers);
17. $totalRows_OnlineUsers = mysql_num_rows($OnlineUsers);
18. 
19. if (isset($_GET['page']) && $_GET['page'] != 'main') {
20. 	$query_Modules = sprintf("SELECT * FROM modules WHERE name = '".CheckModule($_GET['page'])."'");
21. 	$Modules = mysql_query($query_Modules, $Customer_Database) or die(mysql_error());
22. 	$row_Modules = mysql_fetch_assoc($Modules);
23. 	$totalRows_Modules = mysql_num_rows($Modules);
24. }
25.

Functions.php

Код:
60. 
61. // Function: Check Module
62. // Creation Date: 3/20/2005
63. // Alter Date: 3/20/2005
64. // Usage: Checks if a module exists, if not returns ''.
65. function CheckModule($page, $root) {
66. 	$page = trim($page);
67. 
68. 	if (file_exists($root.'/modules/'.$page)) {
69. 		return $page;
70. 	}else{
 

Горе