From 6855dff019e620569f14deeb8a13d5ba77842e28 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 29 Apr 2007 23:51:35 +0000 Subject: [PATCH] Escape $ so that it does not try to print out the variable --- usr/local/sbin/pfSsh.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php index e2f9a05f7c..3f7deecea8 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";