Skip to content

Commit

Permalink
Merge pull request #126 from Jeavon/6.2.0
Browse files Browse the repository at this point in the history
U4-2783 url attribute in installedPackages.config is not populated when ...
  • Loading branch information
nul800sebastiaan committed Sep 3, 2013
2 parents 21954f7 + 05039fd commit 5e83023
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/umbraco.cms/businesslogic/Packager/Installer.cs
Expand Up @@ -189,6 +189,7 @@ public int CreateManifest(string tempDir, string guid, string repoGuid)
string _packVersion = xmlHelper.GetNodeValue(_packageConfig.DocumentElement.SelectSingleNode("/umbPackage/info/package/version"));
string _packReadme = xmlHelper.GetNodeValue(_packageConfig.DocumentElement.SelectSingleNode("/umbPackage/info/readme"));
string _packLicense = xmlHelper.GetNodeValue(_packageConfig.DocumentElement.SelectSingleNode("/umbPackage/info/package/license "));
string _packUrl = xmlHelper.GetNodeValue(_packageConfig.DocumentElement.SelectSingleNode("/umbPackage/info/package/url "));

bool _enableSkins = false;
string _skinRepoGuid = "";
Expand All @@ -209,6 +210,7 @@ public int CreateManifest(string tempDir, string guid, string repoGuid)
insPack.Data.Version = _packVersion;
insPack.Data.Readme = _packReadme;
insPack.Data.License = _packLicense;
insPack.Data.Url = _packUrl;

//skinning
insPack.Data.EnableSkins = _enableSkins;
Expand Down

0 comments on commit 5e83023

Please sign in to comment.