Skip to content

Commit

Permalink
Fix changelog release name regex
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon Klingele committed Aug 8, 2016
1 parent f95767f commit baf0afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion changelog/changelog.php
Expand Up @@ -38,7 +38,7 @@ public static function getChangesSinceVersion($since) {
}

private static function getAllChangesByRelease() {
$version_regex = '/^owncloud-' . Settings::APP_ID . ' \((.*)\)/';
$version_regex = '/^.*-' . Settings::APP_ID . ' \((.*)\)/';
$contents = file_get_contents(Helper::getOwnAppPath() . self::CHANGELOG_FILE);
$releases = explode("\n\n", $contents);
$changes_by_version = array();
Expand Down

0 comments on commit baf0afc

Please sign in to comment.