diff options
Diffstat (limited to 'www-ssl/inc')
-rwxr-xr-x | www-ssl/inc/header.php | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/www-ssl/inc/header.php b/www-ssl/inc/header.php index bbcf61ac..55ddbb24 100755 --- a/www-ssl/inc/header.php +++ b/www-ssl/inc/header.php @@ -35,7 +35,22 @@ echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n"; <HTML> <HEAD> <?PHP -echo "<TITLE>--- $title ---</TITLE>"; + +$Version = ""; + +if( is_readable( "./inc/.svn/entries")) +{ + $file = fopen( "./inc/.svn/entries", "r"); + while(!feof($file)) + if( strpos( ($temp = fgets($file)) , "revision" ) ) $Version = $temp; + fclose( $file); + + $start = strpos( $Version, "=\"")+2; + $len = strpos( $Version, "\"/") - $start; + $Version = "(r ". substr( $Version, $start, $len ). ")"; +} + +echo "<TITLE>--- $title $Version ---</TITLE>"; ?> <meta name="keywords" content="Engel, Himmelsverwaltung"> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> |