Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2006-04-25 19:25:39 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2006-04-25 19:25:39 +0400
commitc8d47ae62450518b68df1ec2e33f529ec05457a5 (patch)
treeed98b547ec9f562d209e41c5bf7fb56922cc28ac /changelog.php
parent7a19861b4b4b8e3c3cc22e769c8107b3c699e101 (diff)
replaced php short open tag
Diffstat (limited to 'changelog.php')
-rw-r--r--changelog.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/changelog.php b/changelog.php
index 5374ea224a..743c83ba8e 100644
--- a/changelog.php
+++ b/changelog.php
@@ -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>';