Update to Drupal 8.0.1. For more information, see https://www.drupal.org/node/2627402
This commit is contained in:
parent
013aaaf2ff
commit
1a0e9d9fac
153 changed files with 1268 additions and 670 deletions
|
@ -168,10 +168,10 @@ for ($i = 0; $i < 36; $i++) {
|
|||
if ($i < 12) {
|
||||
$node->type = 'page';
|
||||
}
|
||||
else if ($i < 24) {
|
||||
elseif ($i < 24) {
|
||||
$node->type = 'story';
|
||||
}
|
||||
else if (module_exists('blog')) {
|
||||
elseif (module_exists('blog')) {
|
||||
$node->type = 'blog';
|
||||
}
|
||||
$node->sticky = 0;
|
||||
|
|
Reference in a new issue