Merge branch '3.6' into 3

This commit is contained in:
Daniel Hensby 2017-06-14 14:29:15 +01:00
commit 273a087f5a
No known key found for this signature in database
GPG Key ID: 229831A941962E26
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ class LeftAndMain extends Controller implements PermissionProvider {
* @config
* @var string
*/
private static $help_link = '//userhelp.silverstripe.org/framework/en/3.5';
private static $help_link = '//userhelp.silverstripe.org/framework/en/3.6';
/**
* @var array

View File

@ -591,7 +591,7 @@ abstract class DBSchemaManager {
if (!isset($this->tableList[strtolower($table)])) $newTable = true;
if (is_array($spec)) {
$specValue = $this->$spec_orig['type']($spec_orig['parts']);
$specValue = $this->{$spec_orig['type']}($spec_orig['parts']);
} else {
$specValue = $spec;
}