summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/language.c6
-rw-r--r--version.log6
2 files changed, 8 insertions, 4 deletions
diff --git a/src/language.c b/src/language.c
index 9acfd79b6..446487a98 100644
--- a/src/language.c
+++ b/src/language.c
@@ -157,15 +157,15 @@ void lang_sanitize()
char buf[256];
for (i = 0; i < NUM_LANGS; i++) {
for (j = 0; j < NUM_STRINGS; j++) {
- if (strstr(langtexts[i][j], "%M")) {
+ if (strstr(langtexts[i][j], "%R")) {
len = strlen(langtexts[i][j]);
if (UseStrictPrivMsg) {
langtexts[i][j] =
- strnrepl(langtexts[i][j], len, "%M", "/");
+ strnrepl(langtexts[i][j], len, "%R", "/");
} else {
langtexts[i][j] = realloc(langtexts[i][j], len + 5);
langtexts[i][j] =
- strnrepl(langtexts[i][j], len + 5, "%M", "/msg ");
+ strnrepl(langtexts[i][j], len + 5, "%R", "/msg ");
}
}
}
diff --git a/version.log b/version.log
index f5c99eb39..43469dcf8 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="14"
VERSION_EXTRA=""
-VERSION_BUILD="1116"
+VERSION_BUILD="1117"
# $Log$
#
+# BUILD : 1.7.14 (1117)
+# BUGS : N/A
+# NOTES : Use %R instead of %M
+#
# BUILD : 1.7.14 (1116)
# BUGS : N/A
# NOTES : Changed %M to %R to avoid strftime call