解决方法
1、打开 include/dialog/select_images.php 文件
1、打开 include/dialog/select_images.php 文件
找到
- <input type='checkbox' name='needwatermark' value='1' class='np' <?php if($photo_markup=='1') echo "checked"; ?> />水印
修改为
- <input type='checkbox' name='needwatermark' value='1' class='np' />水印
解析:这样做的目的是为了控制水印默认为未选中状态
2、打开 include/dialog/select_images_post.php 文件
找到
- if(in_array($imgfile_type, $cfg_photo_typenames))
- {
- WaterImg($fullfilename,'up');
- }
修改为
- if(in_array($imgfile_type,$cfg_photo_typenames) && isset($needwatermark))
- {
- WaterImg($fullfilename,'up');
- }
免责声明:本站所有文章和图片均来自用户分享和网络收集,文章和图片版权归原作者及原出处所有,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服处理。