1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-25 15:51:37 +02:00

Minor adjustment to previous commit (removing development output)

This commit is contained in:
Ryan Cramer
2019-08-30 11:36:25 -04:00
parent e94e10c631
commit 68940a6a9c

View File

@@ -299,11 +299,7 @@ class InputfieldToggle extends Inputfield {
if(!$f) return "Unable to load Inputfield";
$f->val($this->val());
$out = $f->render();
$out .= "<pre>" . print_r($this->getAllLabels(), true) . "</pre>";
return $out;
return $f->render();
}
/**