I get the following PHP notice since I upgraded ZF from 0.1.3 to 0.1.4:
Notice: Only variable references should be returned by reference in C:\projects\vendors\Zend\Pdf\Element\Reference.php on line 207
The notice goes away when I change line 207 from this:
public function &__get($property)
to this:
public function __get($property)
This will keep the PDF from rendering in the browser due to headers already being sent.
Having your error_reporting level kept low would also keep this from appearing.
ZF-160. This is fixed in the 0.1.5 release.