summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xwww-ssl/inc/header.php17
1 files changed, 4 insertions, 13 deletions
diff --git a/www-ssl/inc/header.php b/www-ssl/inc/header.php
index 55459c3a..0e435ab0 100755
--- a/www-ssl/inc/header.php
+++ b/www-ssl/inc/header.php
@@ -41,19 +41,10 @@ echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
<HEAD>
<?PHP
-$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 ). ")";
-}
+// SVN versions auswertung
+exec("svnversion", $VersionArray);
+if( strlen($VersionArray[0]))
+ $Version = "(r ". $VersionArray[0]. ")";
echo "<TITLE>--- $title $Version ---</TITLE>";
?>