diff options
| author | 2026-03-09 18:15:39 +0000 | |
|---|---|---|
| committer | 2026-03-09 18:15:39 +0000 | |
| commit | 7c014d8ca4796fc48d58f54517a5101356349eb0 (patch) | |
| tree | 8cb8a82903d55c51a5cc99e96d453b864b1a44ba /src/modules.cpp | |
| parent | Add a new version of mkauthors written in Python. (diff) | |
| parent | Add a redirect extended ban to the redirect module. (diff) | |
Merge branch 'insp4' into master.
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 59446eeac..d7b50a99c 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -79,13 +79,14 @@ void Module::CompareLinkData(const LinkData& otherdata, LinkDataDiff& diffs) std::string Module::GetPropertyString() const { - // D = VF_CORE ("default") + // R = VF_CORE ("required") // V = VF_VENDOR // C = VF_COMMON // O = VF_OPTCOMMON - std::string propstr("DVCO"); + // D = VF_DEPRECATED + std::string propstr("RVCOD"); size_t pos = 0; - for (int mult = VF_CORE; mult <= VF_OPTCOMMON; mult *= 2, ++pos) + for (int mult = VF_CORE; mult <= VF_LAST; mult *= 2, ++pos) if (!(this->properties & mult)) propstr[pos] = '-'; return propstr; |
