diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2022-07-15 18:56:15 +0000 |
|---|---|---|
| committer | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2022-07-15 18:56:15 +0000 |
| commit | 2e7117b7c836e09ee5685ec584f339b6e4f6bedd (patch) | |
| tree | e0898028605d7ac5e084fde733978206c0ac6c3a /app/controllers/studip_controller.php | |
| parent | 0a9096733e92475e4984794aef4ab80d68d8b19e (diff) | |
don't assign by reference, declare filter variable, fixes #1338
Closes #1338
Merge request studip/studip!826
Diffstat (limited to 'app/controllers/studip_controller.php')
| -rw-r--r-- | app/controllers/studip_controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/studip_controller.php b/app/controllers/studip_controller.php index a85e427..2966f3c 100644 --- a/app/controllers/studip_controller.php +++ b/app/controllers/studip_controller.php @@ -234,7 +234,7 @@ abstract class StudipController extends Trails_Controller $arg = $sorm; if ($this->_autobind) { - $this->{$info['var']} =& $arg; + $this->{$info['var']} = $arg; } break; |
