Skip to content

Commit

Permalink
fix: use slashes for url, not DS
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Küsgen committed Feb 10, 2017
1 parent 28f57a8 commit d4e24b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
array(
'text' => 'Pull',
'icon' => 'arrow-down',
'link' => kirby()->urls()->index() . DS . 'gcapc' . DS . 'pull',
'link' => kirby()->urls()->index() . '/gcapc/pull',
),
array(
'text' => 'Push',
'icon' => 'arrow-up',
'link' => kirby()->urls()->index() . DS . 'gcapc' . DS . 'push',
'link' => kirby()->urls()->index() . '/gcapc/push',
)
),
'html' => function () {
Expand Down

0 comments on commit d4e24b7

Please sign in to comment.