(value string, newValue string)
| 341 | } |
| 342 | |
| 343 | func tryStringValue(value string, newValue string) string { |
| 344 | if len(value) <= 0 && len(newValue) > 0 { |
| 345 | value = newValue |
| 346 | } |
| 347 | return value |
| 348 | } |
| 349 | |
| 350 | func tryFormValue(form *multipart.Form, name string, value string) string { |
| 351 | if len(value) <= 0 { |