diff --git a/functions/var.xml b/functions/var.xml
index a29f0483c9..aa1695b31f 100644
--- a/functions/var.xml
+++ b/functions/var.xml
@@ -2,48 +2,6 @@
Variable Functions
Variables
-
-
- call_user_func
-
- Call a user function given by the first parameter
-
-
-
- Description
-
-
- mixed
- call_user_func
-
- string
- function_name
-
- mixed
- parameter
-
- mixed
- ...
-
-
-
-
- Call a user defined function given by the
- function_name parameter. Take the
- following:
-
-
-function barber ($type) {
- print "You wanted a $type haircut, no problem";
-}
-call_user_func ('barber', "mushroom");
-call_user_func ('barber', "shave");
-
-
-
-
-
-
doubleval