]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Notice getRendered() can now be called on uninserted notices
authorMikael Nordfeldth <mmn@hethane.se>
Thu, 25 Feb 2016 14:48:37 +0000 (15:48 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Thu, 25 Feb 2016 19:13:00 +0000 (20:13 +0100)
classes/Notice.php

index ccd398003d4ad7f362753ad02f3f5f3e08695e8b..07406cc2fd738400b6d6f322384e3d2d579c6392 100644 (file)
@@ -260,7 +260,8 @@ class Notice extends Managed_DataObject
 
     public function getRendered()
     {
-        if (is_null($this->rendered) || $this->rendered === '') {
+        // we test $this->id because if it's not inserted yet, we can't update the field
+        if (!empty($this->id) && (is_null($this->rendered) || $this->rendered === '')) {
             // update to include rendered content on-the-fly, so we don't have to have a fix-up script in upgrade.php
             common_debug('Rendering notice '.$this->getID().' as it had no rendered HTML content.');
             $orig = clone($this);
@@ -854,8 +855,7 @@ class Notice extends Managed_DataObject
         }
         // Strip out any bad HTML
         $stored->rendered = common_purify($content);
-        // yeah, just don't use getRendered() here since it's not inserted yet ;)
-        $stored->content = common_strip_html($stored->rendered);
+        $stored->content  = common_strip_html($stored->getRendered(), true, true);
         if (trim($stored->content) === '') {
             // TRANS: Error message when the plain text content of a notice has zero length.
             throw new ClientException(_('Empty notice content, will not save this.'));