Changeset 3492532
- Timestamp:
- 03/27/2026 10:33:28 AM (20 hours ago)
- File:
-
- 1 edited
-
ressources/trunk/ressources.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ressources/trunk/ressources.php
r3410942 r3492532 96 96 ?> 97 97 <?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> 99 99 <?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> 101 101 <?php if (isset($array[0])) {?> 102 102 <?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> 104 104 <?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> 107 109 <?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> 109 111 <?php 110 112 }
Note: See TracChangeset
for help on using the changeset viewer.