Skip to content

Commit

Permalink
Fixed issue #7139: Warning after updating from 2.00 to most current u…
Browse files Browse the repository at this point in the history
…pdate release
  • Loading branch information
c-schmitz committed Jan 5, 2013
1 parent 72ca32d commit 0205393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions application/controllers/admin/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,11 @@ function step4()
{
if (is_file($rootdir.$afile['file']))
{
unlink($rootdir.$afile['file']);
@unlink($rootdir.$afile['file']);
}
else{
rmdirr($rootdir.$afile['file']);
}
echo sprintf($clang->gT('File deleted: %s'),$afile['file']).'<br />';
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script type="text/javascript" src="<?php echo Yii::app()->getConfig('sCKEditorURL'); ?>/ckeditor.js"></script>
<script type='text/javascript'>
<!--
var sReplacementFieldTitle = '<?php $clang->eT('LameSurvey replacement field properties','js');?>';
var sReplacementFieldTitle = '<?php $clang->eT('LimeSurvey replacement field properties','js');?>';
var sReplacementFieldButton = '<?php $clang->eT('Insert/edit LimeSurvey replacement field','js');?>';
var editorwindowsHash = new Object();
function find_popup_editor(fieldname)
Expand Down

0 comments on commit 0205393

Please sign in to comment.