Hi all,
Just noticed that in -
http://framework.zend.com/manual/e
n/zend.db.table.html#zend.db.table.fetch-row
- example 10.98, it has the code:
...
$select = $table->select()->where('bug_status = ?',
'NEW')->order('bug_id');
$row = $table->fetchRow($where);
I believe that ...fetchRow($where); should read
...fetchRow($select);
Thanks,
Al