well if you want to make it compliant the main thing behind it is to
use a temp variable workaround. For your case the function
getActionStack() for ex might look like :
function &getActionStack() {
// some code here;
return anotherFunctionCall();
}
you should make it like
function &getActionStack() {
// some code here
$temp =& anotherFunctionCall();
return $temp;
}
it's ugly but it's the only way to go afaik.
On 9/8/05, Greg Donald <[EMAIL PROTECTED]> wrote:
> On 9/8/05, David Zülke <[EMAIL PROTECTED]> wrote:
> > Well... it would certainly be helpful if you posted lines 409 to 414 of that
> > file ;)
>
> Yup.. my bad.
>
> > sed -n '409,414p'
> > /home/destiney/agavi_sites/cms/webapp/cache/config_compile.conf.php
> $this->actionStack =&
> $this->context->getActionStack();
> $this->request =&
> $this->context->getRequest();
> $this->user
> =& $this->context->getUser();
> $this->databaseManager =&
> $this->context->getDatabaseManager();
> $this->securityFilter =&
> $this->context->getSecurityFilter();
> $this->storage =&
> $this->context->getStorage();
>
>
> --
> Greg Donald
> Zend Certified Engineer
> MySQL Core Certification
> http://destiney.com/
> _______________________________________________
> agavi-dev mailing list
> [email protected]
> http://labworkz.com/cgi-bin/mailman/listinfo/agavi-dev
>
--
no one, not even the rain, has such small hands.
_______________________________________________
agavi-dev mailing list
[email protected]
http://labworkz.com/cgi-bin/mailman/listinfo/agavi-dev