Browse Source

Unnecessary new line character was being added to each file in get_log.

DieFeM 2 years ago
parent
commit
d5a9a8f070
1 changed files with 1 additions and 1 deletions
  1. 1 1
      includes/lib_remote.php

+ 1 - 1
includes/lib_remote.php

@@ -181,7 +181,7 @@ class OGPRemoteLibrary
 			$lines = explode('\n',$data_tmp);
 			$lines = explode('\n',$data_tmp);
 			foreach ($lines as $line)
 			foreach ($lines as $line)
 			{
 			{
-				$data .= base64_decode($line)."\n";
+				$data .= base64_decode($line);
 			}
 			}
 		}
 		}