Yii 1.1.3 is released
#21
Posted 07 July 2010 - 07:12 AM
Wrong thread
I was going to post it to related topic about jQuery and iPhone: http://www.yiiframew...-jquery-iphone/
#23
Posted 08 July 2010 - 09:34 PM
Thx for the upgrade.. btw renderPartial seemed to be changed a little
relative paths that go up stopped working when i upgraded
#24
Posted 27 July 2010 - 05:47 PM
Excellent job!!
However...
WHAT?!?!?!? WHY?
Reuse of CActiveFinder is very, very, VERY useful to me. It's imperative.
I have complex AR constructions involving FINDALL, COUNT and conditions where I apply different criterias to the same CActiveFinder.
It's unimaginable to rewrite the CActiveFinder several times.
Why does it have to be changed?
However...
Quote
Upgrading from v1.1.2
---------------------
...
- Now it's not possible to reuse CActiveFinder. So if you have code like this:
$finder = Post::model()->with('comments');
$posts1 = $finder->findAll();
…
$posts2 = $finder->findAll();
you should rewrite it to:
$posts1 = Post::model()->with('comments');
…
$posts2 = Post::model()->with('comments');
---------------------
...
- Now it's not possible to reuse CActiveFinder. So if you have code like this:
$finder = Post::model()->with('comments');
$posts1 = $finder->findAll();
…
$posts2 = $finder->findAll();
you should rewrite it to:
$posts1 = Post::model()->with('comments');
…
$posts2 = Post::model()->with('comments');
WHAT?!?!?!? WHY?
Reuse of CActiveFinder is very, very, VERY useful to me. It's imperative.
I have complex AR constructions involving FINDALL, COUNT and conditions where I apply different criterias to the same CActiveFinder.
It's unimaginable to rewrite the CActiveFinder several times.
Why does it have to be changed?
Yes, It Is!
#26
Posted 02 August 2010 - 10:26 AM
ricardograna
It was causing serious memory leaks in PHP 5.2 and this was the only way to fix it.
It was causing serious memory leaks in PHP 5.2 and this was the only way to fix it.
#27
Posted 03 August 2010 - 08:31 PM
samdark, on 02 August 2010 - 10:26 AM, said:
ricardograna
It was causing serious memory leaks in PHP 5.2 and this was the only way to fix it.
It was causing serious memory leaks in PHP 5.2 and this was the only way to fix it.
There exists some thread discussing this? I reuse CActiveFinder very much in PHP 5.2 and haven't seen memory leak problems yet.
Yes, It Is!

Help














