ZF-7192: Short tags are deprecated in PHP6
Description
Short tags are meant to be deprecated in PHP6. Enforcing this setting in my server, I've been able to find this bug
From Zend/Tool/Project/Context/Zf/ViewScriptFile.php: Starting in line 127:
<?= \$this->message ?>
<? if ('development' == APPLICATION_ENV): ?>
Exception information:
Message: <?= \$this->exception->getMessage() ?>
Stack trace:
<?= \$this->exception->getTraceAsString() ?>
Request Parameters:
<? var_dump(\$this->request->getParams()) ?>
<? endif ?>
Comments
Posted by Satoru Yoshida (satoruyoshida) on 2009-07-08T21:43:03.000+0000
It seems to be duplicate of ZF-6889