User name with space can not get points. Point raised by two members already. Forgive me but this is a serious error and my users are angry over it.
Solution to Problem
Spaces in User Name
Goto Plugins & Products>Plugin Manager>Plugin System>ICash>ICash Postbit Edit>Edit
Find
PHP Code:
'?' . $session[sessionurl] . 'do=donate&to=' . $post[username] . '> Donate </a>';
}
Replace with
PHP Code:
'?' . $session[sessionurl] . 'do=donate&to=' . urlencode( $post[username]) . '> Donate </a>';
}
Save the File and you are ready to go.
Note:- We have used
urlencode to correctly encode string. This would convert space to URL equivalent values and PHP string joining routine would handle it correctly.
Please Do it at your own risk. I do not work in insurance company