aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/io.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/io.php')
-rw-r--r--inc/io.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/io.php b/inc/io.php
index dafa2fa4f..da42d4185 100644
--- a/inc/io.php
+++ b/inc/io.php
@@ -415,7 +415,7 @@ function io_replaceInFile($file, $oldline, $newline, $regex = false, $maxlines =
*/
function io_deleteFromFile($file, $badline, $regex = false)
{
- return io_replaceInFile($file, $badline, null, $regex, 0);
+ return io_replaceInFile($file, $badline, '', $regex, 0);
}
/**