Comment #1 on issue 1884 by [email protected]: Pager not working with multi-page uploads
http://code.google.com/p/qubit-toolkit/issues/detail?id=1884

Looks a problem with our ORM:

Try this in a new action:

$n = new QubitDigitalObject;
$n->mimeType = 'FOO';
$n->save();

$n->mimeType = 'BAR';
$n->save(); // throws a PHP notice and it does not save,
// Notice: Undefined index: id in .../om/BaseObject.php on line 690

Workaround:

$n = new QubitDigitalObject;
$n->mimeType = 'FOO';
$n->save();

$n = QubitDigitalObject::getById($n->id);
$n->mimeType = 'BAR';
$n->save(); // It works!


--
You received this message because you are subscribed to the Google Groups "Qubit 
Toolkit Issues" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/qubit-issues?hl=en.

Reply via email to