[#8372] unneeded(?) file creation code in _kronolith_put
Summary unneeded(?) file creation code in _kronolith_put
Queue Kronolith
Queue Version 2.3.1
Type Bug
State Resolved
Priority 1. Low
Owners Chuck Hagenbuch <chuck (at) horde (dot) org>
Requester rpolli (at) babel (dot) it
Created 06/23/09 (265 days ago)
Due
Updated 06/26/09 (262 days ago)
Assigned
Resolved 06/26/09 (262 days ago)
Attachments
Milestone
Patch No

History
06/26/09 Chuck Hagenbuch Comment #3
Assigned to Chuck Hagenbuch
State ⇒ Resolved
Reply to this comment
Your guess that this was debugging code seems to be correct - it 
wasn't even in kronolith-git. I've removed it.
06/26/09 CVS Commit Comment #2 Reply to this comment
06/23/09 rpolli (at) babel (dot) it Comment #1
State ⇒ Unconfirmed
Patch ⇒
Milestone ⇒
Queue ⇒ Kronolith
Summary ⇒ unneeded(?) file creation code in _kronolith_put
Type ⇒ Bug
Priority ⇒ 1. Low
Reply to this comment
in _kronolith_put I found



function _kronolith_put($path, $content, $content_type)

{

     $f = fopen('/tmp/kronolith_put.ics', 'w');

     fwrite($f, $content);

     fclose($f);



if it's not debug, then the filename should be randomized



if it's ok, pls ignore this post ;)