We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fa4a74 commit 0972ba6Copy full SHA for 0972ba6
commons/src/main/java/org/wikimedia/commons/Utils.java
@@ -143,11 +143,11 @@ public static String capitalize(String string) {
143
144
public static String licenseTemplateFor(String license) {
145
if(license.equals(Prefs.Licenses.CC_BY)) {
146
- return "{{self|cc-by}}";
+ return "{{self|cc-by-3.0}}";
147
} else if(license.equals(Prefs.Licenses.CC_BY_SA)) {
148
- return "{{self|cc-by-sa}}";
+ return "{{self|cc-by-sa-3.0}}";
149
} else if(license.equals(Prefs.Licenses.CC0)) {
150
- return "{{self|cc0}}";
+ return "{{self|cc-zero}}";
151
}
152
throw new RuntimeException("Unrecognized license value");
153
0 commit comments