]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add a return to the error path for new events
authorEvan Prodromou <evan@status.net>
Sat, 27 Aug 2011 18:56:02 +0000 (14:56 -0400)
committerEvan Prodromou <evan@status.net>
Sat, 27 Aug 2011 18:56:02 +0000 (14:56 -0400)
plugins/Event/Happening.php
plugins/Event/newevent.php

index 840f1f00617116c35c3ce836435fa2632c3c4be0..b8347bdb2c399a5ee0da73d710fd411c4a2d7b56 100644 (file)
@@ -155,7 +155,7 @@ class Happening extends Managed_DataObject
         // XXX: does this get truncated?
 
         // TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time,
-       // TRANS: %4$s is location, %5$s is a description.
+        // TRANS: %4$s is location, %5$s is a description.
         $content = sprintf(_m('"%1$s" %2$s - %3$s (%4$s): %5$s'),
                            $title,
                            common_exact_date($ev->start_time),
@@ -164,8 +164,8 @@ class Happening extends Managed_DataObject
                            $description);
 
         // TRANS: Rendered event description. %1$s is a title, %2$s is start time, %3$s is start time,
-       // TRANS: %4$s is end time, %5$s is end time, %6$s is location, %7$s is description.
-       // TRANS: Class names should not be translated.
+        // TRANS: %4$s is end time, %5$s is end time, %6$s is location, %7$s is description.
+        // TRANS: Class names should not be translated.
         $rendered = sprintf(_m('<span class="vevent">'.
                               '<span class="summary">%1$s</span> '.
                               '<abbr class="dtstart" title="%2$s">%3$s</a> - '.
index 2704501abddf5412028861b77c58d3fd9fbb8822..1bfcddba3440176f5253397baaa44a8a8a4420a7 100644 (file)
@@ -233,6 +233,7 @@ class NeweventAction extends Action
         } catch (ClientException $ce) {
             if ($this->boolean('ajax')) {
                 $this->outputAjaxError($ce->getMessage());
+                return;
             } else {
                 $this->error = $ce->getMessage();
                 $this->showPage();