Commit:    5ed475d0a7022297760c6130230b441b6c27beed
Author:    Anatol Belski <[email protected]>         Tue, 5 Sep 2017 20:44:12 +0200
Parents:   d4ec65a9388b15ce8f5dbfc36297fada42386c0a
Branches:  master

Link:       
http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=5ed475d0a7022297760c6130230b441b6c27beed

Log:
Fix missing ;

Changed paths:
  M  include/PeclExt.php


Diff:
diff --git a/include/PeclExt.php b/include/PeclExt.php
index 42632ea..059ba94 100644
--- a/include/PeclExt.php
+++ b/include/PeclExt.php
@@ -888,7 +888,7 @@ nodoc:
                chdir($target);
                $zip_file = TMP_DIR . DIRECTORY_SEPARATOR . 
$this->getPackageName() . '.zip';
                foreach ($files_to_zip as $file_to_zip) {
-                       $actual_fn = substr($file_to_zip, strlen($target)+1)
+                       $actual_fn = substr($file_to_zip, strlen($target)+1);
                        $zip_cmd = $this->zip_cmd . ' -9 ' . $zip_file . ' ' . 
$actual_fn;
                        system($zip_cmd, $status);
                        if ($status) {


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to