Changeset 1513068
- Timestamp:
- 10/12/2016 02:35:05 AM (9 years ago)
- File:
-
- 1 edited
-
newsplugin/trunk/send_feedback.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
newsplugin/trunk/send_feedback.php
r1513065 r1513068 19 19 $message .= '<strong>Feedback Mail</strong>'; 20 20 $message .= '<h4>'.$description.'</h4>'; 21 $message .= '<table cellpadding="0" cellspacing="0" width="100%">' +"\n";21 $message .= '<table cellpadding="0" cellspacing="0" width="100%">' . "\n"; 22 22 $message .= '<tbody>'; 23 23 … … 25 25 26 26 $message .= "<tr style='background: #eee;'><strong>Errors on plugin :</strong></tr>\n"; 27 $message .= '<tr><p>'.$errors_logs.'</p></tr>' +"\n";27 $message .= '<tr><p>'.$errors_logs.'</p></tr>' . "\n"; 28 28 } 29 29 … … 36 36 37 37 $key_Name = str_replace('_',' ',$key); 38 $message .= '<tr><td><strong>'.strtoupper($key_Name).'</strong> </td><td>'.$value.'</td></tr>' +"\n";38 $message .= '<tr><td><strong>'.strtoupper($key_Name).'</strong> </td><td>'.$value.'</td></tr>' . "\n"; 39 39 } 40 40 $message .= "<tr style='background: #eee;'><td cellspan='2'><strong>SYSTEM ENVIRONMENT :</strong></td></tr>\n"; … … 42 42 43 43 $key_Name = str_replace('_',' ',$key); 44 $message .= '<tr><td><strong>'.strtoupper($key_Name).'</strong> </td><td>'.$value.'</td></tr>' +"\n";44 $message .= '<tr><td><strong>'.strtoupper($key_Name).'</strong> </td><td>'.$value.'</td></tr>' . "\n"; 45 45 } 46 46 $message .= "<tr style='background: #eee;'><td cellspan='2'><strong>NEWSPLUGIN ENVIRONMENT :</strong></td></tr>\n"; … … 48 48 49 49 $key_Name = str_replace('_',' ',$key); 50 $message .= '<tr><td><strong>'.strtoupper($key_Name).'</strong> </td><td>'.$value.'</td></tr>' +"\n";50 $message .= '<tr><td><strong>'.strtoupper($key_Name).'</strong> </td><td>'.$value.'</td></tr>' . "\n"; 51 51 } 52 52 // }
Note: See TracChangeset
for help on using the changeset viewer.