lots of stuff expects the request object to have a hostname method. give it one.

This commit is contained in:
Scott Walters 2012-06-19 16:20:56 -04:00
parent 225df67d1f
commit 851844c917
2 changed files with 3 additions and 0 deletions

View file

@ -1,4 +1,5 @@
7.10.25
- added: give WebGUI::PseudoRequest a hostname method
- fixed: don't clobber the request handler if WebGUI::Test was loaded inside of mod_perl
- fixed #12365: editing a metadata may cause a fatal error (Arjan Widlak / United Knowledge)
- fixed #12346: toVersion in upgrade_7.9.34-7.10.22.pl was "0.0.0"

View file

@ -73,6 +73,8 @@ sub new {
return $self;
}
sub hostname { 'localhost' }
#----------------------------------------------------------------------------
=head2 body ( [$value])