Default to FETCH_OBJ fetch mode on the DB connection.
Default to FETCH_OBJ fetch mode on the DB connection.

File last commit:

c1e4c31f199d
afcdf97a9f6a
Show More
rants.js
9 lines | 230 B | application/javascript | JavascriptLexer
Add most necessary files for admin interface.
r1 function new_rant_attachment()
{
var list = document.getElementById('rant_attachment_list');
var elt = document.createElement('li');
elt.innerHTML = '<input type="file" name="rant_attachment[]" />';
list.appendChild(elt);
}