diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-10-28 18:00:51 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-10-28 18:00:51 +0100 |
commit | 4a803fa76909bc7172f68da890d854d0d7a5b903 (patch) | |
tree | 62ce91b1f01d45f58f483f381e4efb955c0e0516 | |
parent | 5ebeca22792fa7cdd0f48db3e946b680e1d36c42 (diff) | |
download | ste-4a803fa76909bc7172f68da890d854d0d7a5b903.tar.gz ste-4a803fa76909bc7172f68da890d854d0d7a5b903.tar.bz2 ste-4a803fa76909bc7172f68da890d854d0d7a5b903.zip |
Fixed wrong include paths.
-rw-r--r-- | example/index.php | 2 | ||||
-rw-r--r-- | tests/dump_ast.php | 2 | ||||
-rw-r--r-- | tests/test.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/example/index.php b/example/index.php index 2ebe3c7..b8a6938 100644 --- a/example/index.php +++ b/example/index.php @@ -2,7 +2,7 @@ # Example program to demonstrate the STE... -require_once(dirname(__FILE__) . "/../stupid_template_engine.php"); +require_once(dirname(__FILE__) . "/../ste.php"); # Initialize an STECore instance $ste = new \ste\STECore( diff --git a/tests/dump_ast.php b/tests/dump_ast.php index 418fbc8..ef0a049 100644 --- a/tests/dump_ast.php +++ b/tests/dump_ast.php @@ -1,5 +1,5 @@ <?php -require(dirname(__FILE__) . "/../stupid_template_engine.php"); +require(dirname(__FILE__) . "/../ste.php"); var_dump(\ste\Parser::parse(file_get_contents("php://stdin"), "-")); diff --git a/tests/test.php b/tests/test.php index 41713dc..c765fb4 100644 --- a/tests/test.php +++ b/tests/test.php @@ -1,6 +1,6 @@ <?php -require(dirname(__FILE__) . "/../stupid_template_engine.php"); +require(dirname(__FILE__) . "/../ste.php"); require("code.php"); class TestStorage implements \ste\StorageAccess { |