Compiling Grid Application with field "Filename" type has added character - Parse Error

Started working with 9.5 and I love the integration with cloud storage. I’m using Amazon S3 and set up a user profile form with image upload and it worked flawlessly on the form. When I went to the grid to see how the thumbnail displayed, I got the following error when trying to run:

**Parse error** : syntax error, unexpected '.' in  **/Applications/Scriptcase/v9/wwwroot/scriptcase/app/*project_name*/*app_name*/index.php**  on line  **344**

Looking at that line, there is an added “.” character which is part of the compilation, every time the app is run or code generated. It’s part of the filename generation and is right after “md5(” and before “basename”:

$file_name = '/sc_'.$_REQUEST['rsargs']. '_' . md5(.basename($__file_download)) .'.'. end(explode('.', $_POST['AjaxCheckImg'])) ;

I have to manually edit the file by removing the dot, saving and then refreshing the app after generating/running.

Just wanted to report it.