Skip to content

Instantly share code, notes, and snippets.

@Stanislav-Wolski
Stanislav-Wolski / dhtmlxscheduler.js
Created January 13, 2012 15:34
Fix FF9-Mac for dhtmlxscheduler
//replace content of _copy_dummy function with the next
scheduler._copy_dummy=function(){
var a = new Date(this.start_date);
var b = new Date(this.end_date);
this.start_date = a;
this.end_date = b;
};
@Stanislav-Wolski
Stanislav-Wolski / gist:1156362
Created August 19, 2011 08:47
Attachment headers
<?php
//Open in browser
header('Content-Type: application/pdf');
header('Cache-Control: public, must-revalidate, max-age=0');
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Content-Length: '.$this->bufferlen);