fix detection of scm-server servlet container

This commit is contained in:
Sebastian Sdorra
2012-06-24 16:10:23 +02:00
parent 0b3b595c87
commit 25f0776414

View File

@@ -215,7 +215,7 @@ public class ServletContainerDetector
*/
public boolean isScmServer()
{
return "scm-server".equals(System.getProperty("app-name"));
return "scm-server".equals(System.getProperty("app.name"));
}
/**