Skip to content

Commit

Permalink
refs #957
Browse files Browse the repository at this point in the history
  *  해당 문제 수정
  * 원래는  config.php 가 0,1이 아니라  true, false 로 기록되어야 하는 문제입니다. (버그) 이건 그 티켓에서 처리를...
  • Loading branch information
inureyes committed Oct 27, 2008
1 parent f3dadc0 commit 9ac3068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/view/ownerView.php
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ function reloadUploader() {
+ entryManager.entryId
+ '&maxSize=<?php echo $maxSize;?>&sessionName=TSSESSION&sessionValue=<?php echo $_COOKIE[Session::getName()];?>" width="400" height="40" align="middle" wmode="transparent" quality="high" bgcolor="#ffffff" scale="noScale" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /><\/embed><\/object>';
if (hasRightVersion && (isMoz || isIE)) {
if(<?php echo (isset($service['flashuploader']) && $service['flashuploader'] === false) ? 'false' : 'true';?>) { writeCode(uploaderStr,'uploaderNest'); }
if(<?php echo (isset($service['flashuploader']) && $service['flashuploader'] == false) ? 'false' : 'true';?>) { writeCode(uploaderStr,'uploaderNest'); }
}
window.uploader= document.getElementById('uploader');
refreshUploadButton();
Expand Down

0 comments on commit 9ac3068

Please sign in to comment.