This repository was archived by the owner on Dec 14, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -3449,14 +3449,15 @@ var ICEcoder = {
3449
3449
// Save as events need to send all contents
3450
3450
if ( this . serverQueueItems [ 0 ] . item . indexOf ( 'action=saveAs' ) > 0 ) {
3451
3451
xhr . send ( 'timeStart=' + timeStart + '&file=' + this . serverQueueItems [ 0 ] . file + '&contents=' + encodeURIComponent ( document . getElementById ( 'saveTemp1' ) . value ) ) ;
3452
- // Save evens can just sent the changes
3452
+ // Save events can just send the changes
3453
3453
} else if ( this . serverQueueItems [ 0 ] . item . indexOf ( 'action=save' ) > 0 ) {
3454
3454
xhr . send ( 'timeStart=' + timeStart + '&file=' + this . serverQueueItems [ 0 ] . file + '&changes=' + encodeURIComponent ( document . getElementById ( 'saveTemp1' ) . value ) ) ;
3455
- // Another type of event
3455
+ // Another type of event
3456
3456
} else {
3457
3457
xhr . send ( 'timeStart=' + timeStart + '&file=' + this . serverQueueItems [ 0 ] . file ) ;
3458
3458
}
3459
3459
} else {
3460
+ // File loading done via fileControl iFrame
3460
3461
setTimeout ( function ( ic ) {
3461
3462
if ( "undefined" != typeof ic . serverQueueItems [ 0 ] ) {
3462
3463
ic . filesFrame . contentWindow . frames [ 'fileControl' ] . location . href = ic . serverQueueItems [ 0 ] . item ;
Original file line number Diff line number Diff line change 1
1
<?php
2
- include ( "lib/headers.php " ) ;
3
- include ( "lib/settings.php " ) ;
2
+ include "lib/headers.php " ;
3
+ include "lib/settings.php " ;
4
4
?>
5
5
<!DOCTYPE html>
6
6
<html lang="en">
You can’t perform that action at this time.
0 commit comments