| Etienne Kneuss 2006-05-03, 6:59 pm |
| colder Wed May 3 19:14:23 2006 UTC
Modified files:
/phpdoc/en/reference/runkit/functions runkit-function-add.xml
Log:
Fix #37295 (wrong function used in the example)
http://cvs.php.net/viewcvs.cgi/phpd...3&diff_format=u
Index: phpdoc/en/reference/runkit/functions/runkit-function-add.xml
diff -u phpdoc/en/reference/runkit/functions/runkit-function-add.xml:1.2 phpdoc/en/reference/runkit/functions/runkit-function-add.xml:1.3
--- phpdoc/en/reference/runkit/functions/runkit-function-add.xml:1.2 Tue May 3 20:09:42 2005
+++ phpdoc/en/reference/runkit/functions/runkit-function-add.xml Wed May 3 19:14:23 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- Generated by xml_proto.php v2.2. Found in /scripts directory of phpdoc. -->
<refentry id="function.runkit-function-add">
<refnamediv>
@@ -65,7 +65,7 @@
<programlisting role="php">
<![CDATA[
<?php
-create_function('testme','$a,$b','echo "The value of a is $a\n"; echo "The value of b is $b\n";');
+runkit_function_add('testme','$a,$b','e
cho "The value of a is $a\n"; echo "The value of b is $b\n";');
testme(1,2);
?>
]]>
|