Merge branch 'develop' of https://github.com/getgrav/grav into develop

This commit is contained in:
Andy Miller
2015-08-29 10:40:49 -06:00
4 changed files with 5 additions and 4 deletions

View File

@@ -78,7 +78,7 @@ form:
pages.order.by:
type: select
size: medium
size: long
classes: fancy
label: PLUGIN_ADMIN.DEFAULT_ORDERING
help: PLUGIN_ADMIN.DEFAULT_ORDERING_HELP

View File

@@ -23,6 +23,7 @@ form:
fields:
header.title:
type: text
autofocus: true
style: vertical
label: PLUGIN_ADMIN.TITLE

View File

@@ -1843,7 +1843,7 @@ class Page
}
foreach ($items as $item) {
if (empty($page->taxonomy[$taxonomy])
|| !in_array($item, $page->taxonomy[$taxonomy])) {
|| !in_array(htmlspecialchars_decode($item, ENT_QUOTES), $page->taxonomy[$taxonomy])) {
$collection->remove();
}
}

View File

@@ -54,8 +54,8 @@ class ComposerCommand extends Command
InputOption::VALUE_NONE,
'update the dependencies'
)
->setDescription("Updates the composer vendordependencies needed by Grav.")
->setHelp('The <info>composer</info> command updates the composer vendordependencies needed by Grav');
->setDescription("Updates the composer vendor dependencies needed by Grav.")
->setHelp('The <info>composer</info> command updates the composer vendor dependencies needed by Grav');
}
/**