]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
* L10n update
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 18 Sep 2010 09:27:37 +0000 (11:27 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 18 Sep 2010 09:27:37 +0000 (11:27 +0200)
* superfluous whitespace removed.

plugins/TinyMCE/TinyMCEPlugin.php

index ca16f60591de8ef42b7cc17a14a5bfb6a6648123..2ec4b71608e7f28dc681e14e7f06106807971772 100644 (file)
@@ -48,7 +48,6 @@ if (!defined('STATUSNET')) {
  */
 class TinyMCEPlugin extends Plugin
 {
-
     var $html;
 
     function onEndShowScripts($action)
@@ -74,7 +73,7 @@ class TinyMCEPlugin extends Plugin
             'author' => 'Evan Prodromou',
             'homepage' => 'http://status.net/wiki/Plugin:TinyMCE',
             'rawdescription' =>
-            _m('Use TinyMCE library to allow rich text editing in the browser'));
+            _m('Use TinyMCE library to allow rich text editing in the browser.'));
         return true;
     }
 
@@ -108,7 +107,7 @@ class TinyMCEPlugin extends Plugin
     /**
      * Hook for new-notice form processing to take our HTML goodies;
      * won't affect API posting etc.
-     * 
+     *
      * @param NewNoticeAction $action
      * @param User $user
      * @param string $content
@@ -159,9 +158,9 @@ class TinyMCEPlugin extends Plugin
 
     /**
      * Format the attachment placeholder img with the final version.
-     * 
+     *
      * @param DOMElement $img
-     * @param MediaFile $media 
+     * @param MediaFile $media
      */
     private function formatAttachment($img, $media)
     {
@@ -321,5 +320,4 @@ END_OF_SCRIPT;
 
         return $scr;
     }
-
 }