From: [EMAIL PROTECTED]
Operating system: Linux SUSE
PHP version: 4.2.3
PHP Bug Type: Scripting Engine problem
Bug description: Incorect class propertyes
This source generate error:
class rpcSender {
var $p_list = array (
"faxClient" => ".*",
"yurlicoClient" => "^[Y|N]$",
"idServerClient" => ^"1$"
);
}
But this:
$p_list = array (
"faxClient" => ".*",
"yurlicoClient" => "^[Y|N]$",
"idServerClient" => "^1$"
);
And this
class rpcSender {
var $p_list = array (
"faxClient" => ".*",
"yurlicoClient" => "[Y|N]",
"idServerClient" => "1"
);
}
Working
--
Edit bug report at http://bugs.php.net/?id=21041&edit=1
--
Try a CVS snapshot: http://bugs.php.net/fix.php?id=21041&r=trysnapshot
Fixed in CVS: http://bugs.php.net/fix.php?id=21041&r=fixedcvs
Fixed in release: http://bugs.php.net/fix.php?id=21041&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=21041&r=needtrace
Try newer version: http://bugs.php.net/fix.php?id=21041&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=21041&r=support
Expected behavior: http://bugs.php.net/fix.php?id=21041&r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=21041&r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=21041&r=submittedtwice
register_globals: http://bugs.php.net/fix.php?id=21041&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=21041&r=php3
Daylight Savings: http://bugs.php.net/fix.php?id=21041&r=dst
IIS Stability: http://bugs.php.net/fix.php?id=21041&r=isapi