Added POD to several macros.

Updated POD in Storage/Iimage.pm

Internationalized error messages from RandomAssetProxy.
This commit is contained in:
Colin Kuskie 2005-12-20 17:55:46 +00:00
parent 3b44d47123
commit d430f570f4
8 changed files with 106 additions and 7 deletions

View file

@ -13,6 +13,24 @@ package WebGUI::Macro::Quote;
use strict;
use WebGUI::SQL;
=head1 NAME
Package WebGUI::Macro::Quote
=head1 DESCRIPTION
Macro for quoting data to make it safe for use in SQL queries.
=head2 process ( text )
process is really a wrapper around WebGUI::SQL::quote();
=head3 text
The text to quote.
=cut
#-------------------------------------------------------------------
sub process {
return quote(shift);