4imageste resim kaydetme engelini nasıl kaldırırım
5
●574
- 27-11-2008, 18:09:48

çok basit.
template klasorunuzdeki header.html de bulunan javascript kodlarıdır.kaldırırsanız silinecektir. - 27-11-2008, 18:26:37Üyeliği durduruldu<script language="javascript" type="text/javascript">
<!--
var captcha_reload_count = 0;
var captcha_image_url = "{url_captcha_image}";
function new_captcha_image() {
if (captcha_image_url.indexOf('?') == -1) {
document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count;
} else {
document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count;
}
document.getElementById('captcha_input').value="";
document.getElementById('captcha_input').focus();
captcha_reload_count++;
}
function opendetailwindow() {
window.open('','detailwindow','toolbar=no,scrollba rs=yes,resizable=no,width=680,height=480');
}
function right(e) {
if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {
alert("© Copyright by {site_name}");
return false;
}
else if (event.button == 2 || event.button == 3) {
alert("© Copyright by {site_name}");
return false;
}
return true;
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = right;
}
else if (document.all && !document.getElementById){
document.onmousedown = right;
}
document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false");
// -->
</script>
bu kodlari kaldir - 27-11-2008, 20:03:08
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html dir="{direction}"> <head> <title>{site_name}</title> <meta http-equiv="content-type" content="text/html; charset={charset}" /> <link rel="stylesheet" href="{template_url}/style.css" /> <script language="javascript" type="text/javascript"> <!-- var captcha_reload_count = 0; var captcha_image_url = "{url_captcha_image}"; function new_captcha_image() { if (captcha_image_url.indexOf('?') == -1) { document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count; } else { document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count; } document.getElementById('captcha_input').value=""; document.getElementById('captcha_input').focus(); captcha_reload_count++; } function opendetailwindow() { window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480'); } function right(e) { if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) { alert("© Copyright by {site_name}"); return false; } else if (event.button == 2 || event.button == 3) { alert("© Copyright by {site_name}"); return false; } return true; } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown = right; } else if (document.all && !document.getElementById){ document.onmousedown = right; } document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false"); // --> </script> {if has_rss} <link rel="alternate" type="application/rss+xml" title="{rss_title}" href="{rss_url}" /> {endif has_rss} </head> <body bgcolor="#E9E9E9" text="#050505" link="#E54F00" vlink="#E54F00" alink="#E54F00">
bunlar var arkadaşlar.temayı değiştim.
