diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 11:23:55 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 11:23:55 -0500 |
commit | fb0380f48203a11584773f3db335eaadd9cc6fdf (patch) | |
tree | 98f7eb36ed8a3ec99c1cba5c9c0742af8931783b /shell/bin/cd.php | |
parent | 3d6790614bb0dc776e02a95835e5c274263d1d1a (diff) |
This zip file was identified as ltshell-3.5.zip
Diffstat (limited to 'shell/bin/cd.php')
-rw-r--r-- | shell/bin/cd.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/shell/bin/cd.php b/shell/bin/cd.php index 3679e88..e8505bd 100644 --- a/shell/bin/cd.php +++ b/shell/bin/cd.php @@ -1,5 +1,8 @@ <?php -function main($args) { - @$dir = $args[1]; - return php_chdir($dir); +class p_cd extends prog { + public static function main($args, $env) { + @$dir = $args[1]; + return php_chdir($dir); + } } + |