From 7ff307cabe629e5e0755504e6bdd8055ad566b42 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Fri, 16 Apr 2010 19:31:46 -0500 Subject: [PATCH] fix double sub def in WebGUI::SQL --- lib/WebGUI/SQL.pm | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/lib/WebGUI/SQL.pm b/lib/WebGUI/SQL.pm index de5c892f5..1bc6445a3 100644 --- a/lib/WebGUI/SQL.pm +++ b/lib/WebGUI/SQL.pm @@ -803,24 +803,6 @@ sub quoteIdentifier { #------------------------------------------------------------------- -=head2 quoteIdentifier ( string ) - -Returns a string quoted as an identifier to be used as a table name, column name, etc. - -=head3 string - -Any scalar variable that needs to be escaped to be inserted into the database. - -=cut - -sub quoteIdentifier { - my $self = shift; - my $value = shift; - return $self->dbh->quote_identifier($value); -} - -#------------------------------------------------------------------- - =head2 read ( sql [ , placeholders ] ) This is a convenience method for WebGUI::SQL::ResultSet->read(). It returns the statement