From: Vincent Vanwaelscappel Date: Fri, 21 Apr 2023 06:59:22 +0000 (+0200) Subject: wait #5876 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=574e7a6377cc6445cff976816feaa809ce0c3c44;p=fluidbook-toolbox.git wait #5876 --- diff --git a/app/Http/Controllers/Admin/Operations/Tools/GitReposCreate.php b/app/Http/Controllers/Admin/Operations/Tools/GitReposCreate.php index 01740dca5..844760ecc 100644 --- a/app/Http/Controllers/Admin/Operations/Tools/GitReposCreate.php +++ b/app/Http/Controllers/Admin/Operations/Tools/GitReposCreate.php @@ -58,7 +58,7 @@ trait GitReposCreate $res = array_merge($res, Git::executeCommands($gitolite, ['commit --author="Toolbox" -a -m "Added ' . $repos . ' from Toolbox"', 'push -u origin master'])); - backpack_user()->notify(new ToolboxNotification(__('Répertoire git :name crée', ['name' => $repos]), __('Le répertoire git :name a été crée et est disponible à l\'adresse :url.', ['name' => $repos, 'url' => "`" . $url . "`"]) . "\n" . __('Le chemin pour redmine est :redminepath', ['redminepath', '`' . self::$_REDMINEPREFIX . $repos . '.git`']), [], true)); + backpack_user()->notify(new ToolboxNotification(__('Répertoire git :name crée', ['name' => $repos]), __('Le répertoire git :name a été crée et est disponible à l\'adresse :url.', ['name' => $repos, 'url' => "`" . $url . "`"]) . "\n" . __('Le chemin pour redmine est :redminepath', ['redminepath' => '`' . self::$_REDMINEPREFIX . $repos . '.git`']), [], true)); Log::debug(implode("\n", $res)); return $this->_success(__('Le répertoire :repos a été crée', ['repos' => $repos]));