From fb64e2f6ef647a229c50e9fa0f2076240a3484c6 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 27 Sep 2015 19:11:47 -0600 Subject: [PATCH] revert require() paths in test interface, 1.7.0.9 --- CHANGES.md | 4 ++++ lib/Less/Version.php | 2 +- test/index.php | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a9e94c89..906a9af1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,2 +1,6 @@ This is where the changelog will go for 1.7.0.9 or higher now. +# 1.7.0.9 + + - Remove space at beginning of Version.php + - Revert require() paths in test interface \ No newline at end of file diff --git a/lib/Less/Version.php b/lib/Less/Version.php index 423a9698..704ec6e0 100644 --- a/lib/Less/Version.php +++ b/lib/Less/Version.php @@ -8,7 +8,7 @@ */ class Less_Version{ - const version = '1.7.0.8'; // The current build number of less.php + const version = '1.7.0.9'; // The current build number of less.php const less_version = '1.7'; // The less.js version that this build should be compatible with const cache_version = '170'; // The parser cache version diff --git a/test/index.php b/test/index.php index 30c998c1..8ae36da5 100755 --- a/test/index.php +++ b/test/index.php @@ -15,9 +15,9 @@ //get parser -require_once $dir.'/../lib/Less/Autoloader.php'; +require_once $dir.'/lib/Less/Autoloader.php'; Less_Autoloader::register(); -require_once $dir.'/../lessc.inc.php'; +require_once $dir.'/lessc.inc.php'; //? performance improvement (php 5.3+)