diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-04-29 23:51:35 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-04-29 23:51:35 +0000 |
commit | 6855dff019e620569f14deeb8a13d5ba77842e28 (patch) | |
tree | 5b31c2130fffbfcbedf83b4bb44c501c656a9540 /usr/local | |
parent | d776e0778913fcd4989b35f78d79985bd245c321 (diff) | |
download | pfsense-6855dff019e620569f14deeb8a13d5ba77842e28.zip pfsense-6855dff019e620569f14deeb8a13d5ba77842e28.tar.gz |
Escape $ so that it does not try to print out the variable
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/sbin/pfSsh.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php index e2f9a05..3f7deec 100755 --- a/usr/local/sbin/pfSsh.php +++ b/usr/local/sbin/pfSsh.php @@ -20,7 +20,7 @@ echo ".\n\n"; $shell_active = true; echo "Example commands:\n\n"; -echo " print_r($config);\n"; +echo " print_r(\$config);\n"; echo " \$config['interfaces']['lan']['ipaddr'] = \"192.168.1.1\";\n"; echo " write_config();\n"; |