Browse Source

fix escaping of % in windows

master
Denis Ryabov 11 years ago
parent
commit
ab95c86c0a
  1. 2
      twisterpost.php

2
twisterpost.php

@ -97,7 +97,7 @@ class TwisterPost
} }
$k = $this->maxId + 1; $k = $this->maxId + 1;
$text = '"' . str_replace('"', '\\"', $text) . '"'; $text = escapeshellarg($text);
$result = $this->runRpcCommand('newpostmsg', "{$this->user} $k $text"); $result = $this->runRpcCommand('newpostmsg', "{$this->user} $k $text");
if (isset($result->code) && $result->code < 0) { if (isset($result->code) && $result->code < 0) {
$this->maxId = -1; $this->maxId = -1;

Loading…
Cancel
Save