upgrade scalar values to arrays
authorDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 17 Jun 2010 19:41:57 +0000 (21:41 +0200)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 17 Jun 2010 19:43:50 +0000 (21:43 +0200)
commit7e24e430a10e4a7fdb7f0a4d7886605a012c85c1
tree2a3bf2385036c30f34be8f89657bf0ee3f20753b
parenta20efa6f19130516fab08751ee2382e8bd016b8f
upgrade scalar values to arrays

This usally happens when you write eval code wrong, like in

$row->{something} = 1;

istead of

$row->{something} = [ 1 ];

This is probably wrong place for this, but it makes simple mistake less
fatal.
lib/MojoFacets/Data.pm