Lots more Dashboard features/changes.

Internationalization and Help to come.
Default dashlet demos/walkthroughs to come.
This commit is contained in:
Matthew Wilson 2005-12-01 15:46:04 +00:00
parent 440ca63333
commit 09bf2b263f
12 changed files with 369 additions and 281 deletions

View file

@ -607,9 +607,10 @@ The database handler. Defaults to the WebGUI database handler.
=cut
sub quote {
my $value = shift;
my $value = shift;
return "''" unless $value;
my $dbh = shift || _getDefaultDb();
return $dbh->quote($value);
return $dbh->quote($value);
}
#-------------------------------------------------------------------