Skip to content

Commit

Permalink
Release 2.6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nitriques committed Jan 17, 2017
1 parent e177fc7 commit 96e919c
Show file tree
Hide file tree
Showing 9 changed files with 239 additions and 1,202 deletions.
10 changes: 5 additions & 5 deletions README.markdown
Expand Up @@ -4,10 +4,10 @@

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/symphonycms/symphony-2/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/symphonycms/symphony-2/?branch=master)

- Version: 2.6.9
- Date: 9th January 2017
- [Release notes](http://getsymphony.com/download/releases/version/2.6.9/)
- [Github repository](https://github.com/symphonycms/symphony-2/tree/2.6.9)
- Version: 2.6.10
- Date: 17th January 2017
- [Release notes](http://getsymphony.com/download/releases/version/2.6.10/)
- [Github repository](https://github.com/symphonycms/symphony-2/tree/2.6.10)

## Contents

Expand All @@ -25,7 +25,7 @@

## Overview

Symphony is a `PHP` & `MySQL` based CMS that utilises `XML` and `XSLT` as its core technologies. This repository represents version `2.6.9` and is considered stable.
Symphony is a `PHP` & `MySQL` based CMS that utilises `XML` and `XSLT` as its core technologies. This repository represents version `2.6.10` and is considered stable.

Useful places:

Expand Down
2 changes: 1 addition & 1 deletion composer.json
@@ -1,6 +1,6 @@
{
"name": "symphonycms/symphony-2",
"version": "2.6.9",
"version": "2.6.10",
"description": "Symphony is a PHP & MySQL based CMS that utilises XML and XSLT as its core technologies.",
"homepage": "http://www.getsymphony.com",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion install/index.php
Expand Up @@ -27,7 +27,7 @@
define('DOCROOT', $clean_path);

// Required boot components
define('VERSION', '2.6.9');
define('VERSION', '2.6.10');
define('INSTALL', DOCROOT . '/install');

// Include autoloader:
Expand Down
14 changes: 14 additions & 0 deletions install/migrations/2.6.10.php
@@ -0,0 +1,14 @@
<?php

class migration_2610 extends Migration
{
public static function getVersion()
{
return '2.6.10';
}

public static function getReleaseNotes()
{
return 'http://getsymphony.com/download/releases/version/2.6.10/';
}
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "symphonycms",
"version": "2.6.9",
"version": "2.6.10",
"repository": {
"type": "git",
"url": "https://github.com/symphonycms/symphony-2.git"
Expand Down
2 changes: 1 addition & 1 deletion symphony/assets/css/installer.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion symphony/assets/css/symphony.min.css

Large diffs are not rendered by default.

1,405 changes: 214 additions & 1,191 deletions symphony/assets/js/symphony.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion symphony/lib/toolkit/class.extensionmanager.php
Expand Up @@ -1027,7 +1027,7 @@ public static function create($name)
Symphony::Engine()->throwCustomError(
__('Could not find extension %s at location %s.', array(
'<code>' . $name . '</code>',
'<code>' . $path . '</code>'
'<code>' . str_replace(DOCROOT . '/', '', $path) . '</code>'
)),
__('Symphony Extension Missing Error'),
Page::HTTP_STATUS_ERROR,
Expand Down

0 comments on commit 96e919c

Please sign in to comment.