]> git.decadent.org.uk Git - maypole.git/commitdiff
Fixed documentation bug in ::Plain (base class)
authorMarcus Ramberg <mramberg@cpan.org>
Mon, 27 Sep 2004 20:44:41 +0000 (20:44 +0000)
committerMarcus Ramberg <mramberg@cpan.org>
Mon, 27 Sep 2004 20:44:41 +0000 (20:44 +0000)
Added some missing accessors to ::Config

git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@211 48953598-375a-da11-a14b-00016c27c3ee

lib/Maypole/Config.pm
lib/Maypole/Model/CDBI/Plain.pm

index 21b848f4bc9dac3dcc8d90522bac8f6f54f8e570..e0bf6ee82fab37538d11d7bd116d20107a9db717 100644 (file)
@@ -8,7 +8,8 @@ use warnings;
 # Public accessors.
 __PACKAGE__->mk_accessors(
     qw( view uri_base template_root model loader display_tables ok_tables
-      rows_per_page dsn user pass opts)
+      rows_per_page dsn user pass opts application_name document_encoding
+      content_type)
 );
 
 # Should only be modified by model.
index 114eb884b830813363772ce69026ef6fb5a6ad9a..2c2d869a51679f24188cdddfb2ecafd8e59ba8f3 100644 (file)
@@ -22,7 +22,7 @@ Maypole::Model::CDBI::Plain - Class::DBI model without ::Loader
 =head1 SYNOPSIS
 
     package Foo;
-    use base 'Apache::DBI';
+    use base 'Maypole::Application';
     use Foo::SomeTable;
     use Foo::Other::Table;