Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
revert require() paths in test interface, 1.7.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
oyejorge committed Sep 28, 2015
1 parent d051cfd commit fb64e2f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion lib/Less/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions test/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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+)
Expand Down

0 comments on commit fb64e2f

Please sign in to comment.