]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Minor. Changed from @class location to label
authorSarven Capadisli <csarven@controlyourself.ca>
Wed, 11 Feb 2009 16:50:07 +0000 (16:50 +0000)
committerSarven Capadisli <csarven@controlyourself.ca>
Wed, 11 Feb 2009 16:50:07 +0000 (16:50 +0000)
actions/showgroup.php
actions/showstream.php
actions/tagother.php
lib/grouplist.php
lib/profilelist.php

index 7bc68fbc64a151ac377c414a4ace0e0d52997d26..6df8dd3067fe2e524164196b4295ceb3f49e3d76 100644 (file)
@@ -244,7 +244,7 @@ class ShowgroupAction extends Action
         if ($this->group->location) {
             $this->elementStart('dl', 'entity_location');
             $this->element('dt', null, _('Location'));
-            $this->element('dd', 'location', $this->group->location);
+            $this->element('dd', 'label', $this->group->location);
             $this->elementEnd('dl');
         }
 
index 962f4b4524f499be25b7e1e403709e7b6ba543b9..bd6f4153b26ec0738a456605d670ec0201906ef8 100644 (file)
@@ -281,7 +281,7 @@ class ShowstreamAction extends Action
         if ($this->profile->location) {
             $this->elementStart('dl', 'entity_location');
             $this->element('dt', null, _('Location'));
-            $this->element('dd', 'location', $this->profile->location);
+            $this->element('dd', 'label', $this->profile->location);
             $this->elementEnd('dl');
         }
 
index 3e8a12fd693d3d78a3717530dee6e31ec35795b9..79151c91184a7c7e3642eefea49c48c2fe579c10 100644 (file)
@@ -110,7 +110,7 @@ class TagotherAction extends Action
         if ($this->profile->location) {
             $this->elementStart('dl', 'entity_location');
             $this->element('dt', null, _('Location'));
-            $this->element('dd', 'location', $this->profile->location);
+            $this->element('dd', 'label', $this->profile->location);
             $this->elementEnd('dl');
         }
         if ($this->profile->homepage) {
index 4c448e250d5011b13d3d8280fac33c97cf482bd5..6801ab42617eb40d876fecccba72066c0c2e2ba4 100644 (file)
@@ -124,7 +124,7 @@ class GroupList extends Widget
         if ($this->group->location) {
             $this->out->elementStart('dl', 'entity_location');
             $this->out->element('dt', null, _('Location'));
-            $this->out->elementStart('dd', 'location');
+            $this->out->elementStart('dd', 'label');
             $this->out->raw($this->highlight($this->group->location));
             $this->out->elementEnd('dd');
             $this->out->elementEnd('dl');
index 4d924b039e9647fd329240044a9874d11a9ead59..8bef49dceeefc0885576274a86e7adc786a0dee1 100644 (file)
@@ -123,7 +123,7 @@ class ProfileList extends Widget
         if ($this->profile->location) {
             $this->out->elementStart('dl', 'entity_location');
             $this->out->element('dt', null, _('Location'));
-            $this->out->elementStart('dd', 'location');
+            $this->out->elementStart('dd', 'label');
             $this->out->raw($this->highlight($this->profile->location));
             $this->out->elementEnd('dd');
             $this->out->elementEnd('dl');