Plugin Directory

Changeset 3492532


Ignore:
Timestamp:
03/27/2026 10:33:28 AM (20 hours ago)
Author:
bastho
Message:

Less space between server items

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ressources/trunk/ressources.php

    r3410942 r3492532  
    9696        ?>
    9797        <?php // translators: %s is the blog ID ?>
    98         <p class="twice"><?php echo wp_kses_post(sprintf(__('Blog: %s', 'ressources'),'<b>#'.get_current_blog_id().'</b>')) ?></p>
     98        <div class="twice"><?php echo wp_kses_post(sprintf(__('Blog: %s', 'ressources'),'<b>#'.get_current_blog_id().'</b>')) ?></div>
    9999        <?php // translators: %s is the machine hostname ?>
    100         <p class="twice"><?php echo wp_kses_post(sprintf(__('On machine: %s', 'ressources'),'<b>'.gethostname().'</b>')) ?></b></p>
     100        <div class="twice"><?php echo wp_kses_post(sprintf(__('On machine: %s', 'ressources'),'<b>'.gethostname().'</b>')) ?></div>
    101101        <?php if (isset($array[0])) {?>
    102102            <?php // translators: %s is the OS ?>
    103             <p><?php echo wp_kses_post(sprintf(__('System: %s', 'ressources'),'<b>'.str_replace('\n \l','',$system[0]).'</b>')) ?></p>
     103            <div><?php echo wp_kses_post(sprintf(__('System: %s', 'ressources'),'<b>'.str_replace('\n \l','',$system[0]).'</b>')) ?></div>
    104104        <?php } ?>
    105         <?php // translators: %1$s is the web server, %2$s is the PHP version ?>
    106         <p><?php echo wp_kses_post(sprintf(__('Web server: %1$s, PHP %2$s', 'ressources'),'<b>'.$_SERVER['SERVER_SOFTWARE'].'</b>','<b>'.phpversion().'</b>')) ?></p>
     105        <?php // translators: %s is the web server ?>
     106        <div><?php echo wp_kses_post(sprintf(__('Web server: %1s', 'ressources'),'<b>'.$_SERVER['SERVER_SOFTWARE'].'</b>')) ?></div>
     107        <?php // translators: %s is the PHP version ?>
     108        <div><?php echo wp_kses_post(sprintf(__('PHP: %s', 'ressources'),'<b>'.phpversion().'</b>')) ?></div>
    107109        <?php // translators: %s is the SQL version ?>
    108         <p><?php echo wp_kses_post(sprintf(__('SQL version: %s', 'ressources'),'<b>'.$this->getMySQLVersion().'</b>')) ?></p>
     110        <div><?php echo wp_kses_post(sprintf(__('SQL version: %s', 'ressources'),'<b>'.$this->getMySQLVersion().'</b>')) ?></div>
    109111        <?php
    110112    }
Note: See TracChangeset for help on using the changeset viewer.