Added POD to several macros.
Updated POD in Storage/Iimage.pm Internationalized error messages from RandomAssetProxy.
This commit is contained in:
parent
3b44d47123
commit
d430f570f4
8 changed files with 106 additions and 7 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue