diff options
author | T. Lohmar <smarttv640@gmail.com> | 2014-08-24 21:34:24 +0200 |
---|---|---|
committer | T. Lohmar <smarttv640@gmail.com> | 2014-08-24 21:34:24 +0200 |
commit | b098218e1dc48b8e707f03c8fb495bb786ad1fba (patch) | |
tree | 34f6a22e915017886c718434fb272e85d07bfd37 | |
parent | 269b4cfbc2f02fe5562bc8c6336638fbcec1db4b (diff) | |
download | vdr-plugin-smarttvweb-b098218e1dc48b8e707f03c8fb495bb786ad1fba.tar.gz vdr-plugin-smarttvweb-b098218e1dc48b8e707f03c8fb495bb786ad1fba.tar.bz2 |
Allow Real Questionmark in Path.
-rwxr-xr-x | smarttvfactory.h | 4 | ||||
-rw-r--r-- | url.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/smarttvfactory.h b/smarttvfactory.h index 280c4bd..625e511 100755 --- a/smarttvfactory.h +++ b/smarttvfactory.h @@ -47,8 +47,8 @@ class cStatus { using namespace std; -#define PLG_VERSION "1.0.0" -#define SERVER "SmartTvWeb/1.0.0" +#define PLG_VERSION "1.0.1" +#define SERVER "SmartTvWeb/1.0.1" class cLiveRelay; struct sClientEntry { @@ -53,6 +53,7 @@ string cUrlEncode::doUrlSaveEncode(string in) { break; case '#': // break; + /* if (in.compare(idx, 3, "#3F") == 0) { res += "%3F"; idx +=3; @@ -68,6 +69,7 @@ string cUrlEncode::doUrlSaveEncode(string in) { idx += 3; continue; } +*/ res += "%23"; // just a '#' char break; default: |