17691 Posts in 4607 Topics by 2180 members
General Questions
SilverStripe Forums » General Questions » form error DBField.php
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 459 Views |
-
form error DBField.php

4 September 2009 at 10:29pm
Where would I find the trunk for 2.3.1 version?
When I have a file upload field in a form on SS 2.3.1, I am experiencing this error:Source
100 * this should include quotes.
101 *
102 * @param $value mixed The value to check
103 * @return string The encoded value
104 */
105 function prepValueForDB($value) {
106 if($value === null || $value === "" || $value === false) {
107 return "null";
108 } else {
109 return "'" . addslashes($value) . "'";
110 }
111 }
112
113 /**
114 * Prepare the current field for usage in a
115 * database-manipulation (works on a manipulation reference).I have come across this post regarding the same issue:
http://silverstripe.org/all-other-modules/show/258498#post258498Can anyone point me to the replacement DBField.php file that may solve the problem? Where would I find the trunk for 2.3.1 version? Or is there another answer?
| 459 Views | ||
|
Page:
1
|
Go to Top |

