replaced php short open tag

This commit is contained in:
Sebastian Mendel
2006-04-25 15:25:39 +00:00
parent 7a19861b4b
commit c8d47ae624
2 changed files with 3 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ $Source$
server_binlog.php, server_variables.php, tbl_change.php,
transformation_overview.php:
style upgrade
* changelog.php: replaced php short open tag
2006-04-24 Michal Čihař <michal@cihar.com>
* main.php: Fix logout link (bug #1474694).

View File

@@ -57,7 +57,7 @@ $replaces = array(
=> '<a name="\\4_\\5_\\6_\\7"></a>\\2<a href="http://cvs.sourceforge.net/viewcvs.py/phpmyadmin/phpMyAdmin/?only_with_tag=RELEASE_\\4_\\5_\\6_\\7">\\4.\\5.\\6.\\7 \\8</a>',
'/(( ### )(([0-9]+)\.([0-9]+)\.([0-9]+) (.*)))/'
=> '<a name="\\4_\\5_\\6"></a>\\2<a href="http://cvs.sourceforge.net/viewcvs.py/phpmyadmin/phpMyAdmin/?only_with_tag=RELEASE_\\4_\\5_\\6">\\4.\\5.\\6 \\7</a>',
// Highlight releases (not linkable)
'/( ### )(.*)/'
=> '\\1<b>\\2</b>',
@@ -78,7 +78,7 @@ echo '<?xml version="1.0" encoding="utf-8"?'.'>';
</head>
<body>
<h1>phpMyAdmin - ChangeLog</h1>
<?
<?php
echo '<pre>';
echo preg_replace(array_keys($replaces), $replaces, $changelog);
echo '</pre>';