public function Archive_Tar::_writeFooter

Return value

bool

3 calls to Archive_Tar::_writeFooter()

File

drupal/modules/system/system.tar.inc, line 1159

Class

Archive_Tar

Code

public function _writeFooter() {
  if (is_resource($this->_file)) {

    // ----- Write the last 0 filled block for end of archive
    $v_binary_data = pack('a1024', '');
    $this
      ->_writeBlock($v_binary_data);
  }
  return true;
}