Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed typo in previous commit (add conditional mysql_real_escape_stri…
…ng or mysql_escape_string based on php version)

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@103 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 21, 2003
1 parent 02580cb commit c71a68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Expand Up @@ -272,7 +272,7 @@
}
else
{
$values .= ", '" . mysql_real_escape_string($$value, "'") . "'";
$values .= ", '" . mysql_escape_string($$value) . "'";
}
}
else
Expand Down

0 comments on commit c71a68a

Please sign in to comment.