summaryrefslogtreecommitdiff
path: root/includes/mysql.php.sample
diff options
context:
space:
mode:
authorMichael Tänzer <neo@nhng.de>2012-10-03 00:28:19 +0200
committerMichael Tänzer <neo@nhng.de>2012-10-03 00:28:19 +0200
commit947aa18ca593a2b466cfc5d31ad97a9a437dccca (patch)
treeb645c40e4847714b428b4641044e1e9724777a2a /includes/mysql.php.sample
parent2542114702338ecf1611841efb175ba0bf138441 (diff)
downloadcacert-devel-947aa18ca593a2b466cfc5d31ad97a9a437dccca.tar.gz
cacert-devel-947aa18ca593a2b466cfc5d31ad97a9a437dccca.tar.xz
cacert-devel-947aa18ca593a2b466cfc5d31ad97a9a437dccca.zip
bug 1091: Thou shall not use \n in single quotesbug-1091
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'includes/mysql.php.sample')
-rw-r--r--includes/mysql.php.sample2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/mysql.php.sample b/includes/mysql.php.sample
index ff5cfc3..eb86401 100644
--- a/includes/mysql.php.sample
+++ b/includes/mysql.php.sample
@@ -28,7 +28,7 @@
function sendmail($to, $subject, $message, $from, $replyto = "", $toname = "", $fromname = "", $errorsto = "returns@cacert.org", $extra="")
{
- $lines = explode('\n', $message);
+ $lines = explode("\n", $message);
$message = "";
foreach($lines as $line)
{