mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
chang_e_log typo and removing trailing newlines
This commit is contained in:
parent
96edf7b72f
commit
9a85dad709
@ -159,9 +159,14 @@ function do_editsvnchangelog()
|
|||||||
file_put_contents($logfile,$changelog);
|
file_put_contents($logfile,$changelog);
|
||||||
$cmd = $config['editor'].' '.escapeshellarg($logfile);
|
$cmd = $config['editor'].' '.escapeshellarg($logfile);
|
||||||
passthru($cmd);
|
passthru($cmd);
|
||||||
$config['changlog'] = file_get_contents($logfile);
|
$config['changelog'] = file_get_contents($logfile);
|
||||||
|
// remove trailing newlines
|
||||||
|
while (substr($config['changelog'],-1) == "\n")
|
||||||
|
{
|
||||||
|
$config['changelog'] = substr($config['changelog'],0,-1);
|
||||||
|
}
|
||||||
// allow user to abort, by deleting the changelog
|
// allow user to abort, by deleting the changelog
|
||||||
if (strlen($config['changlog']) <= 2)
|
if (strlen($config['changelog']) <= 2)
|
||||||
{
|
{
|
||||||
die("\nChangelog must not be empty --> aborting\n\n");
|
die("\nChangelog must not be empty --> aborting\n\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user