]> git.decadent.org.uk Git - maypole.git/blobdiff - ex/BeerDB.pm
Bug fixxes to AsForm -- has_many select and zero filled pks not being selected
[maypole.git] / ex / BeerDB.pm
index 53197ccfcffdbf84cd9b0ade71343891f11fd81c..db4ec1c66ce5556790ee37913e90c6187ef71b82 100644 (file)
@@ -2,12 +2,13 @@ package BeerDB;
 use Maypole::Application;
 use Class::DBI::Loader::Relationship;
 
-sub debug { $ENV{BEERDB_DEBUG} }
+sub debug { $ENV{BEERDB_DEBUG} || 0 }
 # This is the sample application.  Change this to the path to your
 # database. (or use mysql or something)
 use constant DBI_DRIVER => 'SQLite';
 use constant DATASOURCE => $ENV{BEERDB_DATASOURCE} || 't/beerdb.db';
 
+
 BEGIN {
     my $dbi_driver = DBI_DRIVER;
     if ($dbi_driver =~ /^SQLite/) {
@@ -43,6 +44,8 @@ BeerDB::Beer->untaint_columns(
     integer => [qw/style brewery score/],
     date =>[ qw/date/],
 );
+BeerDB::Pub->untaint_columns(printable => [qw/name notes url/]);
+
 BeerDB->config->{loader}->relationship($_) for (
     "a brewery produces beers",
     "a style defines beers",