ID: 33029 Updated by: [EMAIL PROTECTED] Reported By: aiv at intertop dot pl -Status: Open +Status: Closed Bug Type: Documentation problem Operating System: N/A PHP Version: Irrelevant New Comment:
This bug has been fixed in the documentation's XML sources. Since the online and downloadable versions of the documentation need some time to get updated, we would like to ask you to be a bit patient. Thank you for the report, and for helping us make our documentation better. Fixed at 2005/04/25 by leszek but the manual wasn't built since then. Previous Comments: ------------------------------------------------------------------------ [2005-05-14 17:44:57] [EMAIL PROTECTED] This is a Polish documentation problem ------------------------------------------------------------------------ [2005-05-13 21:32:07] aiv at intertop dot pl Description: ------------ http://www.php.net/manual/pl/language.oop.php You have to change Cart() in second example to Koszyk() becouse is not working exmaple of constructor Reproduce code: --------------- class Koszyk { var $dzisiejsza_data; var $nazwa; var $wlasciciel; var $artykuly; function Cart() { $this->dzisiejsza_data = date("Y-m-d"); $this->nazwa = $GLOBALS['imie']; /* itp. . . */ } } Expected result: ---------------- class Koszyk { var $dzisiejsza_data; var $nazwa; var $wlasciciel; var $artykuly; function Koszyk() { $this->dzisiejsza_data = date("Y-m-d"); $this->nazwa = $GLOBALS['imie']; /* itp. . . */ } } ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=33029&edit=1
