Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
root
/
srv
/
admin
/
htdocs
/
phpmyadmin-4.4
/
libraries
/
//proc/212/root/srv/admin/htdocs/phpmyadmin-4.4/libraries/db_printview.lib.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Set of functions related to db printview * * @package PhpMyAdmin */ if (! defined('PHPMYADMIN')) { exit; } /** * Function to get html for one of the db dates * * @param string $title the title * @param string $date which date to display * * @return string html content */ function PMA_getHtmlForOneDate($title, $date) { $html = '<tr>' . '<td class="right">' . $title . '</td>' . '<td class="right">' . PMA_Util::localisedDate(strtotime($date)) . '</td>' . '</tr>'; return $html; } ?>