summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-23 19:44:09 +0000
committerlordjaxom <lordjaxom>2005-01-23 19:44:09 +0000
commit4d668fd7e9b8cda6ecb28659de049c91b13dd5b8 (patch)
tree15ce347a3fac02424df4939c24e578206ceae7d1
parent399627b95721e6542fc0ef1d586a7aafe21fa541 (diff)
downloadvdr-plugin-text2skin-4d668fd7e9b8cda6ecb28659de049c91b13dd5b8.tar.gz
vdr-plugin-text2skin-4d668fd7e9b8cda6ecb28659de049c91b13dd5b8.tar.bz2
- made plugin() return the parameter in case a plugin is not loaded
-rw-r--r--xml/function.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xml/function.c b/xml/function.c
index 34b6082..468240e 100644
--- a/xml/function.c
+++ b/xml/function.c
@@ -1,5 +1,5 @@
/*
- * $Id: function.c,v 1.12 2005/01/21 21:39:12 lordjaxom Exp $
+ * $Id: function.c,v 1.13 2005/01/23 19:44:09 lordjaxom Exp $
*/
#include "xml/function.h"
@@ -194,7 +194,7 @@ cxType cxFunction::FunPlugin(const cxType &Param) const
if (entry)
return entry;
}
- return false;
+ return Param;
}
cxType cxFunction::Evaluate(void) const