making propel use fieldnames not php names in playlist getcontents

This commit is contained in:
naomiaro 2010-11-17 18:08:46 -05:00
parent 31fd85a29f
commit 52fe579ce4
2 changed files with 9 additions and 9 deletions

View file

@ -343,7 +343,7 @@ class Playlist {
->find();
foreach ($rows as $row) {
$files[] = $row->toArray(BasePeer::TYPE_PHPNAME, true, true);
$files[] = $row->toArray(BasePeer::TYPE_FIELDNAME, true, true);
}
return $files;