*** VERSION 5.2.0 ***
[NeonServV5.git] / src / cmd_neonserv_topic.c
index d3fc3d7108c3c2cc598c5e122cb9bbc12b911270..88d396a97b3d0e283d6f8bade50741675b03d74f 100644 (file)
@@ -1,4 +1,4 @@
-/* cmd_neonserv_topic.c - NeonServ v5.0
+/* cmd_neonserv_topic.c - NeonServ v5.2
  * Copyright (C) 2011  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
@@ -107,10 +107,16 @@ CMD_BIND(neonserv_cmd_topic) {
         //now build the new topic and set it...
         topiclistpos = 0;
         b = row[2];
+        char *topicpart, *debugbb;
         while((a = strstr(b, "%")) != NULL) {
             *a = '\0';
             if(isdigit(a[1]) && a[1] - 48 > 0) {
-                topiclistpos += sprintf(topiclist + topiclistpos, "%s%s", b, advtopics[a[1] - 49]);
+                topicpart = advtopics[a[1] - 49];
+                if(isdigit(topicpart[0]) && isdigit(b[strlen(b)-1])) 
+                    debugbb = "\002\002"; //double bold to prevent following digits used as color code
+                else
+                    debugbb = "";
+                topiclistpos += sprintf(topiclist + topiclistpos, "%s%s%s", b, debugbb, topicpart);
                 b = a+2;
             } else {
                 topiclistpos += sprintf(topiclist + topiclistpos, "%s%%", b);
@@ -128,10 +134,15 @@ CMD_BIND(neonserv_cmd_topic) {
         char topiclist[MAXLEN*2];
         topiclist[0] = '\0';
         int topiclistpos = 0;
-         b = row[2];
+        b = row[2];
+        char *debugbb;
         while((a = strstr(b, "*")) != NULL) {
             *a = '\0';
-            topiclistpos += sprintf(topiclist + topiclistpos, "%s%s", b, newtopic);
+            if(isdigit(newtopic[0]) && isdigit(b[strlen(b)-1])) 
+                debugbb = "\002\002"; //double bold to prevent following digits used as color code
+            else
+                debugbb = "";
+            topiclistpos += sprintf(topiclist + topiclistpos, "%s%s%s", b, debugbb, newtopic);
             b = a+1;
         }
         topiclistpos += sprintf(topiclist + topiclistpos, "%s", b);