Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhere

This commit is contained in:
Luke Dashjr
2016-01-19 08:42:05 +00:00
parent 4d5a3df9d4
commit 3cae14056a
4 changed files with 6 additions and 3 deletions

View File

@@ -839,5 +839,5 @@ std::string CopyrightHolders()
std::string strCopyrightHolders = _(COPYRIGHT_HOLDERS);
if (strCopyrightHolders.find("%s") == strCopyrightHolders.npos)
return strCopyrightHolders;
return strprintf(strCopyrightHolders, _(PACKAGE_NAME));
return strprintf(strCopyrightHolders, _(COPYRIGHT_HOLDERS_SUBSTITUTION));
}