fixed: in FunctionParser we do not treat '+' as a space

added: some work in MailRegister plugin
       (adding mails to db, showing mails)



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1021 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2016-02-01 10:15:23 +00:00
parent 057607f9e5
commit f15da4d049
13 changed files with 655 additions and 10 deletions

View File

@@ -335,6 +335,12 @@ int c;
path += 3;
}
else
if( *path == '+' )
{
c = ' ';
path += 1;
}
else
{
c = *path;
path += 1;