SimpleBook template
Created by: slifty
The simplebook.php.j2
template has a bug where the torque view, if unset, is passed as false
instead of an empty string. This unfortunately leads to a situation where, on the other end, the view is set to "false"
(the string).
We just need to replace:
$view = TorqueDataConnectConfig::getCurrentView();
with
$view = TorqueDataConnectConfig::getCurrentView() ?: "";