Commit fa3270a720859640e1f22c590828c143771a8409
1 parent
28517e94
Convert a var_dump into a debug log instead.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3799 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
22 deletions
presentation/lookAndFeel/knowledgeTree/ajaxConditional.php
| ... | ... | @@ -54,30 +54,9 @@ class AjaxConditionalDispatcher extends KTStandardDispatcher { |
| 54 | 54 | |
| 55 | 55 | $oTemplate =& $this->oValidator->validateTemplate('ktcore/metadata/chooseFromMetadataLookup'); |
| 56 | 56 | $oTemplate->setData(array('aFieldValues' => $aNextFieldValues)); |
| 57 | - var_dump($aNextFieldValues); | |
| 57 | + $GLOBALS['default']->log->debug(print_r($aNextFieldValues, true)); | |
| 58 | 58 | return $oTemplate->render(); |
| 59 | - | |
| 60 | - var_dump($aNextFieldValues); | |
| 61 | - | |
| 62 | - return ' | |
| 63 | -<tr class="widget"> | |
| 64 | - <th> Test 123. Was that not nice?</th> | |
| 65 | - <td> | |
| 66 | - | |
| 67 | -<select name="test123"> | |
| 68 | - <option value="1">Option 1</option> | |
| 69 | - <option value="2">Option 2</option> | |
| 70 | - <option value="3">Option 3</option> | |
| 71 | - <option value="4">Option 4</option> | |
| 72 | - <option value="5">Option 5</option> | |
| 73 | - <option value="6">Option 6</option> | |
| 74 | -</select> | |
| 75 | - | |
| 76 | - </td> | |
| 77 | -</tr> | |
| 78 | - '; | |
| 79 | 59 | } |
| 80 | - | |
| 81 | 60 | } |
| 82 | 61 | |
| 83 | 62 | $oDispatcher = new AjaxConditionalDispatcher(); | ... | ... |