diff options
author | Andrey Andreev <narf@devilix.net> | 2017-10-06 13:22:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-06 13:22:53 +0200 |
commit | 7298a788797ff64edaddb7ca65b21b6816757940 (patch) | |
tree | abc1e8e8ad34e376e8347b931a8f003c3210c235 /system | |
parent | 4aecaf55f404c627db823f04dd8032c9fb59073c (diff) | |
parent | a088cc47a7104e11d78eac44851779d20bae9cbc (diff) |
Merge pull request #5286 from zploskey/issue_5202
Fix Error "Cannot create references to/from string offsets"
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Form_validation.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index c1cfcdb8f..0dfb274b2 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -591,6 +591,8 @@ class CI_Form_validation { } else { + $data_ref =& $data; + // before we assign values, make a reference to the right POST key if (count($row['keys']) === 1) { |