|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-12-15 05:45 UTC] mansion@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 14:00:01 2025 UTC |
1. Code (part of QuickForm_example.php) ... $checkbox[] = &HTML_QuickForm::createElement('checkbox', 'A', null, 'A'); ... 2. Result in browser Notice: Undefined property: _submitValues in c:\...\HTML\QuickForm\checkbox.php on line 233 3. Bug file HTML/QuickForm/checkbox.php method onQuickFormEvent ... if (count($caller->_submitValues) > 0) { ... 4. Solution if (isset($caller->_submitValues) && (count($caller->_submitValues) > 0)) {