update dbo.webSites
set isQuickPublished = ${enableQuickPublish}
where webSiteID = (
select webSiteID
from dbo.listWebSites
where webSafeOrganizationName = '${path::get-file-name(orgDirectoryName)}'
and
webSafeDepartmentName = '${path::get-file-name(departmentDirectoryName)}'
and
webSafeWebSiteName = '${path::get-file-name(webSiteDirectoryName)}'
);