Skip to content
This repository was archived by the owner on Jan 25, 2021. It is now read-only.

Commit 4f7eaa5

Browse files
Upgrade to 2.5.14
1 parent 65b0659 commit 4f7eaa5

22 files changed

+917
-389
lines changed

kirby/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"erusev/parsedown": "1.7.1",
2828
"erusev/parsedown-extra": "0.7.1",
2929
"michelf/php-smartypants": "1.8.1",
30-
"getkirby/toolkit": "2.5.13",
30+
"getkirby/toolkit": "2.5.14",
3131
"filp/whoops": "2.1.14"
3232
},
3333
"archive": {

kirby/composer.lock

Lines changed: 38 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kirby/kirby.php

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

1111
class Kirby {
1212

13-
static public $version = '2.5.13';
13+
static public $version = '2.5.14';
1414
static public $instance;
1515
static public $hooks = array();
1616
static public $triggered = array();

kirby/readme.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# Kirby Core
1+
# Kirby v2 Core
22

3-
This is the Kirby Core submodule.
3+
Please refer to the [Kirby Starterkit](http://github.com/getkirby-v2/starterkit)
4+
for a complete installation of Kirby 2.
45

5-
Please refer to the [Kirby Starterkit](http://github.com/getkirby/starterkit)
6-
for a complete installation of Kirby
6+
## Kirby 2 - EOL
77

8-
![Build Status](https://travis-ci.org/getkirby/kirby.svg?branch=master)
8+
Kirby 2 is an old version of Kirby CMS. We are supporting it with security updates until December 31st, 2020.
9+
10+
For the latest version of Kirby, check out https://getkirby.com
911

1012
## Author
1113
Bastian Allgeier

kirby/vendor/composer/ClassLoader.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
*
3838
* @author Fabien Potencier <[email protected]>
3939
* @author Jordi Boggiano <[email protected]>
40-
* @see http://www.php-fig.org/psr/psr-0/
41-
* @see http://www.php-fig.org/psr/psr-4/
40+
* @see https://www.php-fig.org/psr/psr-0/
41+
* @see https://www.php-fig.org/psr/psr-4/
4242
*/
4343
class ClassLoader
4444
{
@@ -60,7 +60,7 @@ class ClassLoader
6060
public function getPrefixes()
6161
{
6262
if (!empty($this->prefixesPsr0)) {
63-
return call_user_func_array('array_merge', $this->prefixesPsr0);
63+
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
6464
}
6565

6666
return array();

0 commit comments

Comments
 (0)