Skip to content

Commit

Permalink
fixed parse error
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/MDB2/trunk@211198 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
quipo committed Apr 11, 2006
1 parent ead3b62 commit 1f8cfdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MDB2.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ function setOptions(&$db, $options)
*/
function classExists($classname)
{
if (version_compare(phpversion(), "5.0", ">=") {
if (version_compare(phpversion(), "5.0", ">=")) {
return class_exists($classname, false);
}
return class_exists($classname);
Expand Down

0 comments on commit 1f8cfdc

Please sign in to comment.