I am trying to write a simple function call on a XOWiki object page.
Here is what's on the page:
-----------------------------------------------------------
proc myproc {} {
return "text to display"
}
proc content {} {
set somevar [myproc]
return "$somevar"
}
-----------------------------------------------------------
This is the output I am getting:
::19493::payload
What does this mean?
Thank you.