diff --git a/Frameworks/Core/ERExtensions/Sources/er/extensions/foundation/ERXProperties.java b/Frameworks/Core/ERExtensions/Sources/er/extensions/foundation/ERXProperties.java index dc1c3990a08..2ddf9ce6a50 100644 --- a/Frameworks/Core/ERExtensions/Sources/er/extensions/foundation/ERXProperties.java +++ b/Frameworks/Core/ERExtensions/Sources/er/extensions/foundation/ERXProperties.java @@ -215,7 +215,7 @@ public static void populateSystemProperties() { */ @SuppressWarnings("javadoc") public static String versionStringForApplication() { - return valueFromPlistBundleWithKey(NSBundle.mainBundle(), "CustomInfo.plist", "CFBundleShortVersionString"); + return valueFromPlistBundleWithKey(NSBundle.mainBundle(), "../Info.plist", "CFBundleShortVersionString"); } /** @@ -254,7 +254,7 @@ public static String versionStringForApplication() { */ @SuppressWarnings("javadoc") public static String versionStringForFrameworkNamed(String frameworkName) { - return valueFromPlistBundleWithKey(NSBundle.bundleForName(frameworkName), "CustomInfo.plist", "CFBundleShortVersionString"); + return valueFromPlistBundleWithKey(NSBundle.bundleForName(frameworkName), "Info.plist", "CFBundleShortVersionString"); } /**