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:
@@ -335,6 +335,12 @@ int c;
|
||||
path += 3;
|
||||
}
|
||||
else
|
||||
if( *path == '+' )
|
||||
{
|
||||
c = ' ';
|
||||
path += 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
c = *path;
|
||||
path += 1;
|
||||
|
Reference in New Issue
Block a user