Compare commits

...

1 Commits

Author SHA1 Message Date
Alexey Chubar c47306b609 fixed PROP macro losing quotation marks from string props
Publish PHP Package / docker (push) Successful in 8s Details
2024-07-09 11:50:00 +03:00
1 changed files with 4 additions and 2 deletions

View File

@ -211,10 +211,12 @@ function macro_IS_DEV($jsm)
*/ */
function macro_PROP($jsm, $expr) function macro_PROP($jsm, $expr)
{ {
return \taskman\get($expr); $res = \taskman\get($expr);
if(is_string($res))
return '"'.$res.'"';
return $res;
} }
/** /**
* @global * @global
*/ */