Skip to content

Commit

Permalink
fixed a bug in test file
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Mar 9, 2014
1 parent 3a0a20d commit 3aa8c68
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php include('Embed/autoloader.php'); ?>
<?php
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');

include('Embed/autoloader.php');
?>

<!DOCTYPE html>

Expand Down Expand Up @@ -51,7 +56,7 @@
</head>

<?php
public function getOption($name, $default = null)
function getOption($name, $default = null)
{
return isset($_GET['options'][$name]) ? $_GET['options'][$name] : $default;
}
Expand Down

0 comments on commit 3aa8c68

Please sign in to comment.