Skip to content

Commit 239f34d

Browse files
committed
Merge branch 'release/1.6.14'
2 parents 5056614 + 647ae0f commit 239f34d

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
# v1.6.14
2+
## 08/18/2019
3+
4+
1. [](#bugfix)
5+
* Actually include fix for `system\router.php` [#2627](https://github.com/getgrav/grav/issues/2627)
6+
17
# v1.6.13
2-
## 08/12/2019
8+
## 08/16/2019
39

410
1. [](#bugfix)
511
* Regression fix for `system\router.php` [#2627](https://github.com/getgrav/grav/issues/2627)
612

713
# v1.6.12
8-
## 08/11/2019
14+
## 08/14/2019
915

1016
1. [](#new)
1117
* Added support for custom `FormFlash` save locations

system/defines.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// Some standard defines
1010
define('GRAV', true);
11-
define('GRAV_VERSION', '1.6.13');
11+
define('GRAV_VERSION', '1.6.14');
1212
define('GRAV_TESTING', false);
1313
define('DS', '/');
1414

system/router.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121

2222
/* Check the GRAV_BASEDIR environment variable and use if set */
2323
$grav_basedir = getenv('GRAV_BASEDIR') ?: '';
24-
25-
if (isset($grav_basedir)) {
24+
if ($grav_basedir) {
2625
$grav_index = ltrim($grav_basedir, '/') . DIRECTORY_SEPARATOR . $grav_index;
2726
$grav_basedir = DIRECTORY_SEPARATOR . trim($grav_basedir, DIRECTORY_SEPARATOR);
2827
define('GRAV_ROOT', str_replace(DIRECTORY_SEPARATOR, '/', getcwd()) . $grav_basedir);

0 commit comments

Comments
 (0)