Changeset 221
- Timestamp:
- 11/28/07 23:39:48 (13 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 9 modified
-
includes/config.inc.default.php (modified) (1 diff)
-
includes/func.inc.php (modified) (1 diff)
-
includes/sites/domain_forward.php (added)
-
includes/sites/domain_view.php (modified) (2 diffs)
-
templates/cont_headline.tpl (modified) (1 diff)
-
templates/domain_forward.tpl (added)
-
templates/domain_view.tpl (modified) (23 diffs)
-
templates/error_messages.tpl (modified) (1 diff)
-
templates/success_messages.tpl (modified) (1 diff)
-
web/css/thickbox.css (modified) (1 diff)
-
web/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/config.inc.default.php
r214 r221 84 84 "autoresponder_send", "email_options","fetchmail", 85 85 "mailarchive","mailfilter","spamassassin","spamassassin_learn","autoresponder_xheader"); 86 $config['cpves_version']="0.1 0";86 $config['cpves_version']="0.11-SVN"; 87 87 require_once(ROOT . '/includes/func.inc.php'); 88 88 ?> -
trunk/includes/func.inc.php
r219 r221 36 36 die($db->getMessage()); 37 37 } 38 39 function do_fwd_get_fwd_domain($did) { 40 global $db; 41 $sql=sprintf("SELECT a.to_domain, b.dnsname,b.id,a.id AS do_id FROM domains_forward AS a LEFT JOIN domains AS b ON b.id=a.to_domain WHERE a.fr_domain='%s'", 42 $db->escapeSimple($did)); 43 $result=&$db->query($sql); 44 if ($result->numRows() == 1) { 45 $data=$result->fetchrow(DB_FETCHMODE_ASSOC); 46 return $data; 47 } 48 else { 49 return false; 50 } 51 } 52 38 53 function check_whitelist_addr($addr) { 39 54 if (preg_match('/^@/', $addr)) { //addr is an domain -
trunk/includes/sites/domain_view.php
r218 r221 153 153 } // superadmin END 154 154 155 // del domain_forward from domains_forward 156 if (isset($_GET['sub'])&& $_GET['sub']=="do_fwd" && isset($_GET['act']) && $_GET['act']=="del" && 157 isset($_GET['do_fwd_id']) && is_numeric($_GET['do_fwd_id'])) { 158 $sql=sprintf("DELETE FROM domains_forward WHERE id='%s' AND fr_domain='%s'", 159 $db->escapeSimple($_GET['do_fwd_id']), 160 $db->escapeSimple($_GET['did'])); 161 $db->query($sql); 162 } 163 155 164 //Domain features veraendern ANFANG 156 165 if (isset($_SESSION['superadmin']) && $_SESSION['superadmin']=='1' && isset($_GET['fstate'])&& isset($_GET['f'])) … … 208 217 $smarty->assign('forwardings', get_forem_domain($_GET['did'],'forwardings', $db)); 209 218 219 //get forward domain 220 if (do_fwd_get_fwd_domain($_GET['did'])== false) { 221 $smarty->assign('domain_fwd',0); 222 } 223 else { 224 $smarty->assign('domain_fwd', do_fwd_get_fwd_domain($_GET['did'])); 225 } 210 226 211 227 //FIXME: deleted email addresses!!! -
trunk/templates/cont_headline.tpl
r156 r221 11 11 {elseif $template == "domain_add.tpl" } 12 12 {t}Superadmin: add new domain{/t} 13 {elseif $template == "domain_forward.tpl"} 14 {$dnsname}: {t}create internal domainforward{/t} 13 15 {elseif $template == "domain_view.tpl"} 14 16 {$dnsname}: {t}summary{/t} -
trunk/templates/domain_view.tpl
r220 r221 25 25 26 26 <td style="width:300px;"><div style="float:left;"> 27 {if $row.autoresponder eq "1"}<img src="img/icons/autoresponder.png" al ign="middle" title="{t}vacation active!{/t}" />{/if}27 {if $row.autoresponder eq "1"}<img src="img/icons/autoresponder.png" alt="" align="middle" title="{t}vacation active!{/t}" />{/if} 28 28 <a href="?module=email_view&id={$row.id}&did={$did}">{$row.email}</a></div> 29 29 <div style="float:right;padding:0px;"> 30 30 <a class="tooltip" href="#"> 31 <img src="img/icons/help.png" title="" align="middle"/>31 <img src="img/icons/help.png" alt="" title="" align="middle"/> 32 32 <span>{t}information{/t}:<br/> </span></a> 33 33 </div></td> … … 41 41 <td style="text-align:right;vertical-align:middle;"> 42 42 {if $row.access == '1' } 43 <a href="?module=domain_view&did={$did}&type=email&state=disable&eid={$row.id}"><img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate emailaddress{/t}"/></a>44 {else} 45 <a href="?module=domain_view&did={$did}&type=email&state=enable&eid={$row.id}"><img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate emailaddress{/t}"/></a>43 <a href="?module=domain_view&did={$did}&type=email&state=disable&eid={$row.id}"><img src="img/icons/button_ok.png" alt="" style="border:0px;" title="{t}deactivate emailaddress{/t}"/></a> 44 {else} 45 <a href="?module=domain_view&did={$did}&type=email&state=enable&eid={$row.id}"><img src="img/icons/button_cancel.png" alt="" style="border:0px;" title="{t}activate emailaddress{/t}"/></a> 46 46 {/if}</td> 47 47 <td style="text-align:right;vertical-align:middle;"> 48 <a href="?module=email_del&did={$row.did}&id={$row.id}"><img src="img/icons/delete.png" style="border:0px;" title="{t}delete emailaddress{/t}" />48 <a href="?module=email_del&did={$row.did}&id={$row.id}"><img src="img/icons/delete.png" style="border:0px;" alt="" title="{t}delete emailaddress{/t}" /> 49 49 </a> 50 50 </td> … … 68 68 <tr bgcolor="{cycle values="$color1,$color2"}"> 69 69 <td style="width:300px;"><a href="?module=forward_view&id={$row.id}&did={$did}">{$row.from}</a></td> 70 <td style="width:300px;">{if $row.if_multif eq 'y' }<img src="img/icons/multi_fwd.png" style="border:0px;" title="{t}forwarding to more addresses.{/t}" /> {/if }{$row.to}</td>70 <td style="width:300px;">{if $row.if_multif eq 'y' }<img src="img/icons/multi_fwd.png" style="border:0px;" alt="" title="{t}forwarding to more addresses.{/t}" /> {/if }{$row.to}</td> 71 71 <td style="text-align:right;vertical-align:middle;"> 72 72 {if $row.access == '1'} 73 <a href="?module=domain_view&did={$did}&type=forward&state=disable&eid={$row.id}"><img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate forwarding.{/t}"/></a>73 <a href="?module=domain_view&did={$did}&type=forward&state=disable&eid={$row.id}"><img src="img/icons/button_ok.png" alt="" style="border:0px;" title="{t}deactivate forwarding.{/t}"/></a> 74 74 75 75 {else} 76 <a href="?module=domain_view&did={$did}&type=forward&state=enable&eid={$row.id}"><img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate forwarding.{/t}"/></a>76 <a href="?module=domain_view&did={$did}&type=forward&state=enable&eid={$row.id}"><img src="img/icons/button_cancel.png" alt="" style="border:0px;" title="{t}activate forwarding.{/t}"/></a> 77 77 {/if}</td> 78 78 <td style="text-align:right;vertical-align:middle;"> 79 <a href="?module=forward_del&did={$did}&id={$row.id}" ><img src="img/icons/delete.png" style="border:0px;" title="{t}delete forwarding.{/t}" /></a>79 <a href="?module=forward_del&did={$did}&id={$row.id}" ><img src="img/icons/delete.png" style="border:0px;" title="{t}delete forwarding.{/t}" alt="" /></a> 80 80 </td> 81 81 </tr> … … 98 98 <td style="text-align:right;vertical-align:middle;"> 99 99 {if $row.access == '1' } 100 <a href="?module=domain_view&did={$did}&type=list&state=disable&eid={$row.id}"><img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate mailinglist.{/t}"/></a>101 {else} 102 <a href="?module=domain_view&did={$did}&type=list&state=enable&eid={$row.id}"><img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate mailinglist.{/t}"/></a>100 <a href="?module=domain_view&did={$did}&type=list&state=disable&eid={$row.id}"><img src="img/icons/button_ok.png" alt="" style="border:0px;" title="{t}deactivate mailinglist.{/t}"/></a> 101 {else} 102 <a href="?module=domain_view&did={$did}&type=list&state=enable&eid={$row.id}"><img src="img/icons/button_cancel.png" alt="" style="border:0px;" title="{t}activate mailinglist.{/t}"/></a> 103 103 {/if}</td> 104 104 <td style="text-align:right;vertical-align:middle;"> 105 <a href="?module=list_del&did={$did}&id={$row.id}" ><img src="img/icons/delete.png" style="border:0px;" title="{t}delete mailinglist.{/t}" /></a>105 <a href="?module=list_del&did={$did}&id={$row.id}" ><img src="img/icons/delete.png" style="border:0px;" title="{t}delete mailinglist.{/t}" alt="" /></a> 106 106 </td> 107 107 </tr> … … 129 129 130 130 {if $catchall_access == '1'} 131 <a href="?module=domain_view&did={$did}&state=disable&type=forward&eid={$catchall_id}"><img src="img/icons/button_ok.png" title="{t}deactivate catchall entry.{/t}" style="border:0px;" /></a>131 <a href="?module=domain_view&did={$did}&state=disable&type=forward&eid={$catchall_id}"><img src="img/icons/button_ok.png" alt="" title="{t}deactivate catchall entry.{/t}" style="border:0px;" /></a> 132 132 133 133 {else} 134 <a href="?module=domain_view&did={$did}&state=enable&type=forward&eid={$catchall_id}"><img src="img/icons/button_cancel.png" title="{t}activate catchall entry.{/t}" style="border:0px;" /></a>134 <a href="?module=domain_view&did={$did}&state=enable&type=forward&eid={$catchall_id}"><img src="img/icons/button_cancel.png" title="{t}activate catchall entry.{/t}" alt="" style="border:0px;" /></a> 135 135 {/if}</form></td> 136 136 <td style="text-align:right;vertical-align:middle;"> 137 <a href="?module=domain_view&did={$did}&type=catchall&state=delete&eid={$catchall_id}" title="{t}delete catchall entry.{/t}"><img src="img/icons/delete.png" style="border:0px;" /></a>137 <a href="?module=domain_view&did={$did}&type=catchall&state=delete&eid={$catchall_id}" title="{t}delete catchall entry.{/t}"><img src="img/icons/delete.png" alt="" style="border:0px;" /></a> 138 138 </td> 139 139 {/if} … … 145 145 </tr> 146 146 <tr> 147 {if $domain_f orward_active==0}147 {if $domain_fwd==0} 148 148 <td colspan="4"> 149 {t 1=$dnsname}no internal domainforward for %1 configured.{/t}<br/><a href="?module=domain_forward&did={$did} &new=yes">{t}click here to configure an domainfoward.{/t}</a>149 {t 1=$dnsname}no internal domainforward for %1 configured.{/t}<br/><a href="?module=domain_forward&did={$did}">{t}click here to configure an domainfoward.{/t}</a> 150 150 </td> 151 151 </tr> … … 157 157 </tr> 158 158 <tr> 159 <td style="padding-right:15px;"> {$dnsname}</td>160 <td><a href="?module=domain_view&did={$ to_domain_id}">{$to_domain_name}</a></td>161 <td style="text-align:right;vertical-align:middle;">< img src="img/icons/delete.png" style="border:0px;" /></td>159 <td style="padding-right:15px;">@{$dnsname}</td> 160 <td><a href="?module=domain_view&did={$domain_fwd.id}">@{$domain_fwd.dnsname}</a></td> 161 <td style="text-align:right;vertical-align:middle;"><a href="?module=domain_view&did={$did}&sub=do_fwd&act=del&do_fwd_id={$domain_fwd.do_id}"><img src="img/icons/delete.png" style="border:0px;" alt="" /></a></td> 162 162 </tr> 163 163 … … 174 174 {if $domain.p_imap == 0 } 175 175 <a href="?module=domain_view&did={$did}&fstate=1&f=imap"> 176 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate IMAP.{/t}" /></a>176 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate IMAP.{/t}" alt="" /></a> 177 177 {else} 178 178 <a href="?module=domain_view&did={$did}&fstate=0&f=imap"> 179 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate IMAP.{/t}" /></a>179 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate IMAP.{/t}" alt="" /></a> 180 180 {/if}</td> 181 181 </tr> … … 186 186 {if $domain.p_pop3 == 0 } 187 187 <a href="?module=domain_view&did={$did}&fstate=1&f=pop3"> 188 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate POP3.{/t}" /></a>188 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate POP3.{/t}" alt="" /></a> 189 189 {else} 190 190 <a href="?module=domain_view&did={$did}&fstate=0&f=pop3"> 191 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate POP3.{/t}" /></a>191 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate POP3.{/t}" alt="" /></a> 192 192 {/if}</td> 193 193 </tr> … … 198 198 {if $domain.p_webmail == 0 } 199 199 <a href="?module=domain_view&did={$did}&fstate=1&f=webmail"> 200 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate webmail.{/t}" /></a>200 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate webmail.{/t}" alt="" /></a> 201 201 {else} 202 202 <a href="?module=domain_view&did={$did}&fstate=0&f=webmail"> 203 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate webmail.{/t}" /></a>203 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate webmail.{/t}" alt="" /></a> 204 204 {/if}</td> 205 205 </tr> … … 211 211 {if $domain.p_mlists == 0 } 212 212 <a href="?module=domain_view&did={$did}&fstate=1&f=mlists"> 213 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate mailinglists.{/t}" /></a>213 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate mailinglists.{/t}" alt="" /></a> 214 214 {else} 215 215 <a href="?module=domain_view&did={$did}&fstate=0&f=mlists"> 216 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate mailinglists.{/t}" /></a>216 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate mailinglists.{/t}" alt="" /></a> 217 217 {/if}</td> 218 218 </tr> … … 225 225 {if $domain.p_check_polw == 0 } 226 226 <a href="?module=domain_view&did={$did}&fstate=1&f=check_polw"> 227 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate policyd-weight.{/t}" /></a>227 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate policyd-weight.{/t}" alt="" /></a> 228 228 {else} 229 229 <a href="?module=domain_view&did={$did}&fstate=0&f=check_polw"> 230 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate policyd-weight.{/t}" /></a>230 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate policyd-weight.{/t}" alt="" /></a> 231 231 {/if}</td> 232 232 </tr> … … 239 239 {if $domain.p_check_grey == 0 } 240 240 <a href="?module=domain_view&did={$did}&fstate=1&f=check_grey"> 241 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate greylisting.{/t}" /></a>241 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate greylisting.{/t}" alt="" /></a> 242 242 {else} 243 243 <a href="?module=domain_view&did={$did}&fstate=0&f=check_grey"> 244 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate greylisting.{/t}" /></a>244 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate greylisting.{/t}" alt="" /></a> 245 245 {/if}</td> 246 246 </tr> … … 252 252 {if $domain.p_webinterface == 0 } 253 253 <a href="?module=domain_view&did={$did}&fstate=1&f=webinterface"> 254 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate CpVES webinterface.{/t}" /></a>254 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate CpVES webinterface.{/t}" alt="" /></a> 255 255 {else} 256 256 <a href="?module=domain_view&did={$did}&fstate=0&f=webinterface"> 257 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate CpVES webinterface.{/t}" /></a>257 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate CpVES webinterface.{/t}" alt="" /></a> 258 258 {/if}</td> 259 259 </tr> … … 264 264 {if $domain.p_autores_xheader == 0 } 265 265 <a href="?module=domain_view&did={$did}&fstate=1&f=autores_xheader"> 266 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate vacation X-Header feature.{/t}" /></a>266 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate vacation X-Header feature.{/t}" alt="" /></a> 267 267 {else} 268 268 <a href="?module=domain_view&did={$did}&fstate=0&f=autores_xheader"> 269 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate vacation X-Header feature.{/t}" /></a>269 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate vacation X-Header feature.{/t}" alt="" /></a> 270 270 {/if}</td> 271 271 </tr> … … 276 276 {if $domain.p_fetchmail == 0 } 277 277 <a href="?module=domain_view&did={$did}&fstate=1&f=fetchmail"> 278 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate fetchmail{/t}:" /></a>278 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate fetchmail{/t}:" alt="" /></a> 279 279 {else} 280 280 <a href="?module=domain_view&did={$did}&fstate=0&f=fetchmail"> 281 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate fetchmail.{/t}" /></a>281 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate fetchmail.{/t}" alt="" /></a> 282 282 {/if}</td> 283 283 </tr> … … 288 288 {if $domain.p_spamassassin == 0 } 289 289 <a href="?module=domain_view&did={$did}&fstate=1&f=spamassassin"> 290 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate spamassassin.{/t}" /></a>290 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate spamassassin.{/t}" alt="" /></a> 291 291 {else} 292 292 <a href="?module=domain_view&did={$did}&fstate=0&f=spamassassin"> 293 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate spamassassin.{/t}" /></a>293 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate spamassassin.{/t}" alt="" /></a> 294 294 {/if}</td> 295 295 </tr> … … 300 300 {if $domain.p_sa_learn == 0 } 301 301 <a href="?module=domain_view&did={$did}&fstate=1&f=sa_learn"> 302 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate ham/spam learning.{/t}" /></a>302 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate ham/spam learning.{/t}" alt="" /></a> 303 303 {else} 304 304 <a href="?module=domain_view&did={$did}&fstate=0&f=sa_learn"> 305 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate ham/spam learning.{/t}" /></a>305 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate ham/spam learning.{/t}" alt="" /></a> 306 306 {/if}</td> 307 307 </tr> … … 313 313 {if $domain.p_spam_del == 0 } 314 314 <a href="?module=domain_view&did={$did}&fstate=1&f=spam_del"> 315 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate delete spam.{/t}" /></a>315 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate delete spam.{/t}" alt="" /></a> 316 316 {else} 317 317 <a href="?module=domain_view&did={$did}&fstate=0&f=spam_del"> 318 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate delete spam.{/t}" /></a>318 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate delete spam.{/t}" alt="" /></a> 319 319 {/if}</td> 320 320 </tr> … … 326 326 {if $domain.p_spam_fwd == 0 } 327 327 <a href="?module=domain_view&did={$did}&fstate=1&f=spam_fwd"> 328 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate forward spam.{/t}" /></a>328 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate forward spam.{/t}" alt="" /></a> 329 329 {else} 330 330 <a href="?module=domain_view&did={$did}&fstate=0&f=spam_fwd"> 331 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate forward spam.{/t}" /></a>331 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate forward spam.{/t}" alt="" /></a> 332 332 {/if}</td> 333 333 </tr> … … 339 339 {if $domain.p_bogofilter == 0 } 340 340 <a href="?module=domain_view&did={$did}&fstate=1&f=bogofilter"> 341 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate bogofilter.{/t}" /></a>341 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate bogofilter.{/t}" alt="" /></a> 342 342 {else} 343 343 <a href="?module=domain_view&did={$did}&fstate=0&f=bogofilter"> 344 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate bogofilter.{/t}" /></a>344 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate bogofilter.{/t}" alt="" /></a> 345 345 {/if}</td> 346 346 </tr> … … 352 352 {if $domain.p_mailarchive == 0 } 353 353 <a href="?module=domain_view&did={$did}&fstate=1&f=mailarchive"> 354 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate archivemail.{/t}" /></a>354 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate archivemail.{/t}" alt="" /></a> 355 355 {else} 356 356 <a href="?module=domain_view&did={$did}&fstate=0&f=mailarchive"> 357 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate archivemail.{/t}" /></a>357 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate archivemail.{/t}" alt="" /></a> 358 358 {/if}</td> 359 359 </tr> … … 364 364 {if $domain.p_sa_wb_listing == 0 } 365 365 <a href="?module=domain_view&did={$did}&fstate=1&f=sa_wb_listing"> 366 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate whitelisting.{/t}" /></a>366 <img src="img/icons/button_cancel.png" style="border:0px;" title="{t}activate whitelisting.{/t}" alt="" /></a> 367 367 {else} 368 368 <a href="?module=domain_view&did={$did}&fstate=0&f=sa_wb_listing"> 369 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate whitelisting.{/t}" /></a>369 <img src="img/icons/button_ok.png" style="border:0px;" title="{t}deactivate whitelisting.{/t}" alt="" /></a> 370 370 {/if}</td> 371 371 </tr> -
trunk/templates/error_messages.tpl
r218 r221 17 17 {elseif $if_error_password_empty == 'y'} 18 18 {t}password is empty!{/t} 19 {elseif $if_error_to_domain_not_exists == 'y'} 20 {t}the selected domains does not exists!{/t} 21 {elseif $if_error_domain_forwarded_already == 'y'} 22 {t}the domain is already forwarded to another domain.{/t}<br/> 23 {t}please return to domain overview!{/t} 19 24 {elseif $if_error_password_old_wrong == 'y'} 20 25 {t}old password is wrong!{/t} -
trunk/templates/success_messages.tpl
r171 r221 27 27 {elseif $if_salearn_saved == 'y'} 28 28 {t}changes are saved.{/t} 29 {elseif $domain_forward_saved =='y'} 30 {t}the domain forward was saved.{/t}<br> 31 {t}you will be forwarded to domain overview{/t} 32 <meta http-equiv="refresh" content="1; URL=?module=domain_view&did={$did}"> 29 33 {/if} -
trunk/web/css/thickbox.css
r102 r221 31 31 top: 0px; 32 32 left: 0px; 33 background-color:#000 ;33 background-color:#000000; 34 34 filter:alpha(opacity=75); 35 35 -moz-opacity: 0.75; -
trunk/web/index.php
r199 r221 61 61 $site="domain_del"; 62 62 break; 63 case 'domain_forward': 64 $site="domain_forward"; 65 break; 63 66 case 'list_add': 64 67 $site="list_add";
