mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 08:38:54 +01:00
remove trailing newlines
This commit is contained in:
parent
3cef21d501
commit
7ee9859bab
@ -160,6 +160,11 @@ function do_editsvnchangelog()
|
|||||||
$cmd = $config['editor'].' '.escapeshellarg($logfile);
|
$cmd = $config['editor'].' '.escapeshellarg($logfile);
|
||||||
passthru($cmd);
|
passthru($cmd);
|
||||||
$config['changelog'] = 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['changelog']) <= 2)
|
if (strlen($config['changelog']) <= 2)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user