mikelbring / tinyissue

Simple Issue Tracking for Teams
MIT License
770 stars 205 forks source link

config.app.php faulty after installation #215

Closed kitzberger closed 3 years ago

kitzberger commented 10 years ago

Just tried to install tinyissue for the first time. Got a blank page after submitting the DB parameters. I used a single quote as part of my mail.from.name which resulted in a buggy config.app.php, see line 40:

 37     'mail' => array(
 38 
 39         'from' => array(
 40             'name' => 'Philipp's Tracker',
 41             'email' => 'philipp@mydomain.net',
 42         ),
christophermh44 commented 10 years ago

Hello,

Maybe you can just escape it with a \ :

'mail' => array(
    'from' => array(
        'name' => 'Philipp\'s Tracker',
        'email' => 'philipp@mydomain.net',
    ),
kitzberger commented 10 years ago

that's what I did manually, yes.

Still the install routine should cover that for us, imho. That's why I reported it here ;-)

christophermh44 commented 10 years ago

Actually yes, it seems to be a bug :)