cellog Wed Apr 13 00:31:42 2005 EDT
Modified files:
/pear-core/PEAR/Command Package.php
Log:
use single quotes for require_once
http://cvs.php.net/diff.php/pear-core/PEAR/Command/Package.php?r1=1.104&r2=1.105&ty=u
Index: pear-core/PEAR/Command/Package.php
diff -u pear-core/PEAR/Command/Package.php:1.104
pear-core/PEAR/Command/Package.php:1.105
--- pear-core/PEAR/Command/Package.php:1.104 Tue Apr 5 22:10:24 2005
+++ pear-core/PEAR/Command/Package.php Wed Apr 13 00:31:42 2005
@@ -18,7 +18,7 @@
* @author Greg Beaver <cellog@xxxxxxx>
* @copyright 1997-2005 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
- * @version CVS: $Id: Package.php,v 1.104 2005/04/06 02:10:24 cellog Exp $
+ * @version CVS: $Id: Package.php,v 1.105 2005/04/13 04:31:42 cellog Exp $
* @link http://pear.php.net/package/PEAR
* @since File available since Release 0.1
*/
@@ -666,8 +666,8 @@
function doSign($command, $options, $params)
{
- require_once "System.php";
- require_once "Archive/Tar.php";
+ require_once 'System.php';
+ require_once 'Archive/Tar.php';
// should move most of this code into PEAR_Packager
// so it'll be easy to implement "pear package --sign"
if (sizeof($params) != 1) {
@@ -744,8 +744,8 @@
function doMakeRPM($command, $options, $params)
{
- require_once "System.php";
- require_once "Archive/Tar.php";
+ require_once 'System.php';
+ require_once 'Archive/Tar.php';
if (sizeof($params) != 1) {
return $this->raiseError("bad parameter(s), try \"help
$command\"");
}
|