Search found 3 matches
- Wed Aug 08, 2012 5:04 am
- Forum: The Lounge
- Topic: Possible Bug with Custom User Functions in loops
- Replies: 0
- Views: 879
Possible Bug with Custom User Functions in loops
I believe that I have found a bug in how custom user tags are handled inside of loops. In particular, this is an issue when the tag takes parameters and does something to them. action.test.php <?php $records = array(); $rec1 = new stdClass(); $rec1->date = '2012-03-24'; array_push($records, $rec1); ...
- Sun Aug 05, 2012 5:16 pm
- Forum: Developers Discussion
- Topic: [SOLVED] Issues with uploading files
- Replies: 1
- Views: 1754
Re: Issues with uploading files
After a good night's sleep, I figured out what I was missing. For any future people, or most likely myself the next time I try to do this, the issue was that I forgot to add an encode type to the form tag itself. If you are doing file uploads the form creation needs to look something like this: $sma...
- Sun Aug 05, 2012 6:27 am
- Forum: Developers Discussion
- Topic: [SOLVED] Issues with uploading files
- Replies: 1
- Views: 1754
[SOLVED] Issues with uploading files
I am writing a module that involves uploading a file as part of a form. I created the input using CreateFileUploadInput. From looking at it the input is being created correctly. When I submit the form, I get nothing in the processing script. If I do a var_dump($_FILES) is shows an empty array. I tri...