From 5be1e3b79eb1f7f9a6de2138ba9a08fed3b744d9 Mon Sep 17 00:00:00 2001 From: Gabor Hojtsy Date: Wed, 15 Aug 2001 08:27:44 +0000 Subject: [PATCH] Closing bug #12750 (echo was missing) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@54957 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/oop.xml b/language/oop.xml index be17ddf1e4..2cb68fed8c 100644 --- a/language/oop.xml +++ b/language/oop.xml @@ -1,4 +1,4 @@ - + Classes and Objects @@ -303,7 +303,7 @@ class A { class B extends A { function C() { - "I am a regular function.<br>\n"; + echo "I am a regular function.<br>\n"; } }