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

Commit

Permalink
Upgrade to 2.5.14
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Dec 1, 2020
1 parent 65b0659 commit 4f7eaa5
Show file tree
Hide file tree
Showing 22 changed files with 917 additions and 389 deletions.
2 changes: 1 addition & 1 deletion kirby/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"erusev/parsedown": "1.7.1",
"erusev/parsedown-extra": "0.7.1",
"michelf/php-smartypants": "1.8.1",
"getkirby/toolkit": "2.5.13",
"getkirby/toolkit": "2.5.14",
"filp/whoops": "2.1.14"
},
"archive": {
Expand Down
50 changes: 38 additions & 12 deletions kirby/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion kirby/kirby.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class Kirby {

static public $version = '2.5.13';
static public $version = '2.5.14';
static public $instance;
static public $hooks = array();
static public $triggered = array();
Expand Down
12 changes: 7 additions & 5 deletions kirby/readme.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Kirby Core
# Kirby v2 Core

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

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

![Build Status](https://travis-ci.org/getkirby/kirby.svg?branch=master)
Kirby 2 is an old version of Kirby CMS. We are supporting it with security updates until December 31st, 2020.

For the latest version of Kirby, check out https://getkirby.com

## Author
Bastian Allgeier
Expand Down
6 changes: 3 additions & 3 deletions kirby/vendor/composer/ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
*
* @author Fabien Potencier <[email protected]>
* @author Jordi Boggiano <[email protected]>
* @see http://www.php-fig.org/psr/psr-0/
* @see http://www.php-fig.org/psr/psr-4/
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
Expand All @@ -60,7 +60,7 @@ class ClassLoader
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', $this->prefixesPsr0);
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}

return array();
Expand Down
Loading

0 comments on commit 4f7eaa5

Please sign in to comment.