Changeset 4687
- Timestamp:
- 07/20/07 14:17:13 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfPropelActAsNestedSetBehaviorPlugin/README
r4686 r4687 235 235 * ~~fix postgresql compatibiliy~~ 236 236 * ~~inform users of RDBMS compatibility~~ 237 * fix `getDescendants()` performances 238 * fix `deleteDescendants() 239 * make it possible to delete a root node that has children 237 * ~~fix `getDescendants()` performance~~ 240 238 * fix level retrieval performance issues 241 239 … … 255 253 * get rid of mysql dependency : rewrite queries "criteria-like" or implement adapter. 256 254 * add a method to copy a whole tree to another scope 255 * make it possible to delete a root node that has children 256 257 ==== Bugfixes ==== 258 259 * complete rewrite of `deleteDescendants() 257 260 258 261 == Changelog == … … 271 274 * fixed `getDescendants()` performances (Jon.Collins) 272 275 * added `getReversedDescendants()``method (Jon.Collins) 276 * fixed scope handling in `deleteDescendants()` (Piers.Warmers) 273 277 274 278 === 2007-05-24 | 0.9.0 === plugins/sfPropelActAsNestedSetBehaviorPlugin/lib/sfPropelActAsNestedSetBehavior.class.php
r4686 r4687 918 918 919 919 $c->add($c1); 920 $c->add(self::getColumnConstant($stub_name, 'scope'), $node->getScopeIdValue()); 920 921 $c->addDescendingOrderByColumn(self::getColumnConstant($stub_name, 'right')); 921 922