From b82b9f35dbcdc059886dd32272f5e19ed480804b Mon Sep 17 00:00:00 2001 From: Awilum Date: Wed, 3 Jul 2019 15:28:26 +0300 Subject: [PATCH] Flextype Admin Panel: Entries #175 #165 - fixes --- site/plugins/admin/app/Controllers/EntriesController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/plugins/admin/app/Controllers/EntriesController.php b/site/plugins/admin/app/Controllers/EntriesController.php index 1099bb71..dce60738 100644 --- a/site/plugins/admin/app/Controllers/EntriesController.php +++ b/site/plugins/admin/app/Controllers/EntriesController.php @@ -491,7 +491,7 @@ class EntriesController extends Controller if ($this->entries->rename( $data['entry_path_current'], - $data['entry_parent'] . $this->slugify->slugify($data['name']) + $data['entry_parent'] . '/' . $this->slugify->slugify($data['name']) )) { $this->flash->addMessage('success', __('admin_message_entry_renamed')); } else {