diff options
Diffstat (limited to 'shell/bin/cd.php')
-rw-r--r-- | shell/bin/cd.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/bin/cd.php b/shell/bin/cd.php index e8505bd..baf30f3 100644 --- a/shell/bin/cd.php +++ b/shell/bin/cd.php @@ -2,7 +2,7 @@ class p_cd extends prog { public static function main($args, $env) { @$dir = $args[1]; - return php_chdir($dir); + return lts_chdir($dir); } } |