Fixed build errors as a result of changed AddPackageWithResources method.

This commit is contained in:
robvde 2012-09-05 06:46:36 +04:00
parent 11d2069df2
commit e9d04fdcbd
3 changed files with 2 additions and 2 deletions

View file

@ -839,7 +839,7 @@ namespace WebsitePanel.Setup.Actions
Log.WriteStart("Adding hosting space");
// gather form info
PackageResult res = ES.Services.Packages.AddPackageWithResources(userId, planId,
name, 1, false, false, string.Empty, false, false, false, null, false);
name, 1, false, false, string.Empty, false, false, false, null, false, string.Empty);
if (res.Result > 0)
Log.WriteEnd("Added hosting space");
else

View file

@ -1233,7 +1233,7 @@ namespace WebsitePanel.Setup
Log.WriteStart("Adding hosting space");
// gather form info
PackageResult res = ES.Services.Packages.AddPackageWithResources(userId, planId,
name, 1, false, false, string.Empty, false, false, false, null, false);
name, 1, false, false, string.Empty, false, false, false, null, false,string.Empty);
if (res.Result > 0)
Log.WriteEnd("Added hosting space");
else