openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

commit 0a8241a397c0c27d394128a91d79d18c47e0795c
parent 6337ce2c12427254a23f1b9b297b82d66f2f8bfd
Author: Jan Dankert <develop@jandankert.de>
Date:   Tue, 19 Nov 2019 01:06:26 +0100

Fix: missing toString-method in Value.class

Diffstat:
modules/cms-core/model/Value.class.php | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/modules/cms-core/model/Value.class.php b/modules/cms-core/model/Value.class.php @@ -1688,4 +1688,9 @@ SQL return ''; } + + public function __toString() + { + return "Value: ".print_r($this,true); + } } \ No newline at end of file