|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2003-04-28 03:06 UTC] arnaud@php.net
  [2003-04-28 03:42 UTC] arnaud@php.net
  [2003-04-28 03:42 UTC] avb@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 04:00:01 2025 UTC | 
the current function definition reads: function replaceBlockfile($block, $filename, $keep_content = false) { return $this->replaceBlock($block, $this->getFile($filename)); } // end func replaceBlockfile $keep_content is never passed on to replaceBlock(), the function should read: function replaceBlockfile($block, $filename, $keep_content = false) { return $this->replaceBlock($block, $this->getFile($filename), $keep_content); } // end func replaceBlockfile