'Add Smiley' Buttons Fix
1.0
This mod will add a space character before a smiley when pressing the "Add Smiley" Button. So all smileys sould be displayed correctly.
[CV]XXL
http://boardmod.xnull.com
Sources\Post.pl
function smiley() {
AddTxt=":)";
AddText(AddTxt);
}
function wink() {
AddTxt=";)";
AddText(AddTxt);
}
function cheesy() {
AddTxt=":D";
AddText(AddTxt);
}
function grin() {
AddTxt=";D";
AddText(AddTxt);
}
function angry() {
AddTxt=":-(";
AddText(AddTxt);
}
function sad() {
AddTxt=":(";
AddText(AddTxt);
}
function shocked() {
AddTxt=":o";
AddText(AddTxt);
}
function cool() {
AddTxt="8)";
AddText(AddTxt);
}
function huh() {
AddTxt="???";
AddText(AddTxt);
}
function smiley() {
AddTxt=" :)";
AddText(AddTxt);
}
function wink() {
AddTxt=" ;)";
AddText(AddTxt);
}
function cheesy() {
AddTxt=" :D";
AddText(AddTxt);
}
function grin() {
AddTxt=" ;D";
AddText(AddTxt);
}
function angry() {
AddTxt=" :-(";
AddText(AddTxt);
}
function sad() {
AddTxt=" :(";
AddText(AddTxt);
}
function shocked() {
AddTxt=" :o";
AddText(AddTxt);
}
function cool() {
AddTxt=" 8)";
AddText(AddTxt);
}
function huh() {
AddTxt=" ???";
AddText(AddTxt);
}