Skip to content

Commit

Permalink
Merge pull request #28 from felagund/patch-1
Browse files Browse the repository at this point in the history
Move newlines
  • Loading branch information
sumeetweb authored Sep 18, 2022
2 parents 63bd524 + bb3587d commit b69251e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
// -:
$msg = '';
if($cookiedata == '' || $clientdate == '')
$msg .= "Cookie data and Client Date not set. Use the ReadMe file first before using this script.";
$msg .= "Cookie data and Client Date not set. Use the ReadMe file first before using this script.\n";
if(!extension_loaded('curl'))
$msg .= '\nCurl not installed or enabled in php.ini';
$msg .= 'Curl not installed or enabled in php.ini\n';
if(!extension_loaded('mbstring'))
$msg .= '\nMbstring extension not enabled. Remove ; from php.ini config in the line ;extension=mbstring';
$msg .= 'Mbstring extension not enabled. Remove ; from php.ini config in the line ;extension=mbstring\n';
if(!extension_loaded('openssl'))
$msg .= '\nOpenssl not enabled in php.ini';
$msg .= 'Openssl not enabled in php.ini\n';
if($msg != '')
die($msg);

0 comments on commit b69251e

Please sign in to comment.