aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-09-10 21:50:40 +0100
committerJustin Clark-Casey (justincc)2010-09-10 21:50:40 +0100
commit381c3e37384c800866f57267a71f15c746f61ede (patch)
treece1edcdb10ec491ce1468bc6df59c0457766972c
parentRemove commented code and the comment, as the change has proven out (diff)
downloadopensim-SC_OLD-381c3e37384c800866f57267a71f15c746f61ede.zip
opensim-SC_OLD-381c3e37384c800866f57267a71f15c746f61ede.tar.gz
opensim-SC_OLD-381c3e37384c800866f57267a71f15c746f61ede.tar.bz2
opensim-SC_OLD-381c3e37384c800866f57267a71f15c746f61ede.tar.xz
Remove parenthesis around the release flavour to get the version string back under 27 chars
Can't quite remember why this has to be <=27 chars, maybe something to do with the space available for the version string in a typical client
-rw-r--r--OpenSim/Framework/Servers/VersionInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/VersionInfo.cs b/OpenSim/Framework/Servers/VersionInfo.cs
index bb574e1..cdc5b9b 100644
--- a/OpenSim/Framework/Servers/VersionInfo.cs
+++ b/OpenSim/Framework/Servers/VersionInfo.cs
@@ -49,7 +49,7 @@ namespace OpenSim
49 49
50 public static string GetVersionString(string versionNumber, Flavour flavour) 50 public static string GetVersionString(string versionNumber, Flavour flavour)
51 { 51 {
52 string versionString = "OpenSim " + versionNumber + " (" + flavour + ")"; 52 string versionString = "OpenSim " + versionNumber + " " + flavour;
53 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH); 53 return versionString.PadRight(VERSIONINFO_VERSION_LENGTH);
54 } 54 }
55 55