Commit: 90d42806557bd13b25801608f7198c02e98c40d9 Author: Anatol Belski <[email protected]> Fri, 30 Aug 2013 19:30:49 +0200 Parents: 02e6449306dee661484236ae6eb87b40f3f763ae Branches: master
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=90d42806557bd13b25801608f7198c02e98c40d9 Log: removed an accidential die Changed paths: M client/include/PeclExt.php Diff: diff --git a/client/include/PeclExt.php b/client/include/PeclExt.php index 74b57a3..e44b044 100644 --- a/client/include/PeclExt.php +++ b/client/include/PeclExt.php @@ -33,6 +33,7 @@ class PeclExt $this->version = $tmp[1]; if (!$this->name || !$this->version) { + /* XXX do unpack here already and get the name/version data */ throw new \Exception("Couldn't parse extension name or version from the filename"); } @@ -94,7 +95,6 @@ class PeclExt $this->package_xml->loadXML( file_get_contents($this->tmp_package_xml_path) ); - var_dump($this->package_xml);die; } $this->tgz_path = NULL; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
