]> git.decadent.org.uk Git - maypole.git/commitdiff
Oops, we need to untaint everything now. I wonder why.
authorSimon Cozens <simon@simon-cozens.org>
Sat, 31 Jan 2004 19:37:21 +0000 (19:37 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Sat, 31 Jan 2004 19:37:21 +0000 (19:37 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@43 48953598-375a-da11-a14b-00016c27c3ee

lib/BeerDB.pm

index 23bd39f335c7c7f15d48f5f7f95fe4acff35ef1f..6080812172ded213e7872ba8fd5b0d3ccc885e6c 100644 (file)
@@ -7,13 +7,16 @@ sub handler { Apache::MVC::handler(__PACKAGE__, @_) }
 
 # This is the sample application. Change this to the path to your
 # database. (or use mysql or something)
-BeerDB->set_database("dbi:SQLite:t/beerdb.db");
+#BeerDB->set_database("dbi:SQLite:t/beerdb.db");
+BeerDB->set_database("dbi:mysql:beerdb");
 # Change this to the root of the web space.
-BeerDB->config->{uri_base} = "http://localhost/beerdb/";
+#BeerDB->config->{uri_base} = "http://localhost/beerdb/";
+BeerDB->config->{uri_base} = "http://neo.trinity-house.org.uk/beerdb/";
 
 # Handpumps should not show up.
 BeerDB->config->{display_tables} = [qw[beer brewery pub style]];
 BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] );
+BeerDB::Style->untaint_columns( printable => [qw/name notes/] );
 BeerDB::Beer->untaint_columns(
     printable => [qw/abv name price notes/],
     integer => [qw/style brewery/],