mirror of
https://github.com/getgrav/grav.git
synced 2026-06-20 02:31:26 +02:00
Merge branch 'develop' of https://github.com/getgrav/grav into develop
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -23,6 +23,7 @@ form:
|
||||
fields:
|
||||
header.title:
|
||||
type: text
|
||||
autofocus: true
|
||||
style: vertical
|
||||
label: PLUGIN_ADMIN.TITLE
|
||||
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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');
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user