From 8bcea1fdae7cf72f188821f005abd02f1adbea8e Mon Sep 17 00:00:00 2001 From: Daniel Steglich Date: Tue, 3 Mar 2015 22:46:32 +0100 Subject: [PATCH] do not show single quotes arround the update URL --- actions/dynamicdns | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/dynamicdns b/actions/dynamicdns index 30a8ff309..ff1f620cb 100755 --- a/actions/dynamicdns +++ b/actions/dynamicdns @@ -199,7 +199,8 @@ doStatus() echo $DISABLED_STRING fi if [ ! -z ${updateurl} ];then - echo ${updateurl} + local url=`echo ${updateurl} | sed "s/'//g"` + echo ${url} else echo $DISABLED_STRING fi