| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function extend(array $settings) { |
||
| 38 | $appConfig = json_decode($settings['array']['oc_appconfig'], true); |
||
| 39 | |||
| 40 | $value = (int)$this->c->getConfig()->getAppValue('comments', 'maxAutoCompleteResults', 10); |
||
| 41 | $appConfig['comments']['maxAutoCompleteResults'] = $value; |
||
| 42 | |||
| 43 | $settings['array']['oc_appconfig'] = json_encode($appConfig); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |