Skip to content
Snippets Groups Projects
Commit 1ecbb180 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2021779 follow-up by amateescu: Fixing broken HEAD.

parent 40d3d3f2
No related branches found
No related tags found
No related merge requests found
......@@ -60,18 +60,20 @@ function standard_install() {
// Populate the default shortcut set.
$shortcut = entity_create('shortcut', array(
'set' => 'default',
'shortcut_set' => 'default',
'title' => t('Add content'),
'weight' => -20,
'path' => 'node/add',
'langcode' => language_default()->id,
));
$shortcut->save();
$shortcut = entity_create('shortcut', array(
'set' => 'default',
'shortcut_set' => 'default',
'title' => t('All content'),
'weight' => -19,
'path' => 'admin/content',
'langcode' => language_default()->id,
));
$shortcut->save();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment