From: Ben Klang Date: Tue, 18 May 2010 02:05:00 +0000 (-0400) Subject: Pastie: fix saving paste title X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8d4ccd8f323900abc511855461a2e8ff54d6644c;p=horde.git Pastie: fix saving paste title --- diff --git a/pastie/paste.php b/pastie/paste.php index a7baa7311..8458391cc 100644 --- a/pastie/paste.php +++ b/pastie/paste.php @@ -24,7 +24,7 @@ if ($form->validate($vars)) { $form->getInfo($vars, $info); try { - $uuid = $pastie->driver->savePaste('default', $info['paste'], $info['syntax']); + $uuid = $pastie->driver->savePaste('default', $info['paste'], $info['syntax'], $info['title']); $notification->push(sprintf('Paste saved. %s', $uuid), 'horde.success');