]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Refs #2032 changed <p> to <div> for plugin settings
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 11 Jun 2011 13:24:47 +0000 (13:24 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 11 Jun 2011 13:24:47 +0000 (13:24 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@9168 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/categories/views/default/settings/categories/edit.php
mod/garbagecollector/views/default/settings/garbagecollector/edit.php
mod/logrotate/views/default/settings/logrotate/edit.php

index 583292e72552311f5dc9caae9cad766449951821..3802da95a95ca4e24da42a035300b495213a9a9e 100644 (file)
@@ -14,8 +14,9 @@ if (empty($categories)) {
 }
 
 ?>
-<p>
-       <?php echo elgg_echo('categories:explanation'); ?>
-</p>
+<div>
+       <p><?php echo elgg_echo('categories:explanation'); ?></p>
 <?php
-echo elgg_view('input/tags', array('value' => $categories, 'name' => 'categories'));
+       echo elgg_view('input/tags', array('value' => $categories, 'name' => 'categories'));
+?>
+</div>
\ No newline at end of file
index a0f9677a04e120fb6827b784ba0c190550bb5dcd..3ade780f9aabcd805c032974abe5d134571e5ce8 100644 (file)
@@ -9,9 +9,9 @@ $period = $vars['entity']->period;
 if (!$period) {
        $period = 'monthly';
 }
-               
+
 ?>
-<p>
+<div>
        <?php echo elgg_echo('garbagecollector:period'); ?>
        
        <?php
@@ -25,4 +25,4 @@ if (!$period) {
                        'value' => $period
                ));
        ?>
-</p>
+</div>
index 2060517807d89b9a2e9c55d101a0959f76a7d020..32d59faa5bf8aa3b905fd8b153b98ba09b28d6a7 100644 (file)
@@ -15,7 +15,7 @@ if (!$time) {
        $time = 'monthly';
 }              
 ?>
-<p>
+<div>
        <?php echo elgg_echo('logrotate:period'); ?>
        
        <?php
@@ -30,7 +30,7 @@ if (!$time) {
                ));
        ?>
 
-       <?php echo elgg_echo('<br>'); ?>
+       <?php echo elgg_echo('</div><div>'); ?>
 
        <?php echo elgg_echo('logrotate:date'); ?>
        
@@ -45,4 +45,4 @@ if (!$time) {
                        'value' => $time
                ));
        ?>
-</p>
+</div>