]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
p -> div for markup wrapper
authorEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 03:31:50 +0000 (04:31 +0100)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 23 Jan 2009 03:31:50 +0000 (04:31 +0100)
actions/public.php
actions/showgroup.php
actions/showstream.php

index 395d28819e710b58160d204e5867aa74ed9c2099..396b60e83ff06a67cbd7a74adf3ab60db8a6719f 100644 (file)
@@ -215,8 +215,8 @@ class PublicAction extends Action
                $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
                'based on the Free Software [Laconica](http://laconi.ca/) tool. ' .
                '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))');
-        $this->elementStart('p', 'anonymous');
+        $this->elementStart('div', 'anonymous');
         $this->raw(common_markup_to_html($m));
-        $this->elementEnd('p');
+        $this->elementEnd('div');
     }
 }
index c693d518b766805fb72e81227fc77745776fa3dd..72738d7853da15236f590db9372cdbf47e1402f8 100644 (file)
@@ -380,8 +380,8 @@ class ShowgroupAction extends Action
                        'short messages about their life and interests. '.
                        '[Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))'),
                      $this->group->nickname);
-        $this->elementStart('p', 'anonymous');
+        $this->elementStart('div', 'anonymous');
         $this->raw(common_markup_to_html($m));
-        $this->elementEnd('p');
+        $this->elementEnd('div');
     }
 }
index 3bccdcb1a8255cdc40c38e577338886fdaf310d8..3005cdd88d027a8823234c9f2a091873b5be3ea3 100644 (file)
@@ -538,9 +538,9 @@ class ShowstreamAction extends Action
                        'based on the Free Software [Laconica](http://laconi.ca/) tool. ' .
                        '[Join now](%%%%action.register%%%%) to follow **%s**\'s notices and many more! ([Read more](%%%%doc.help%%%%))'),
                      $this->user->nickname, $this->user->nickname);
-        $this->elementStart('p', 'anonymous');
+        $this->elementStart('div', 'anonymous');
         $this->raw(common_markup_to_html($m));
-        $this->elementEnd('p');
+        $this->elementEnd('div');
     }
 
 }