summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ad078e7)
raw | patch | inline | side by side (parent: ad078e7)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 20 May 2005 12:32:15 +0000 (12:32 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 20 May 2005 12:32:15 +0000 (12:32 +0000) |
diff --git a/plugins/gofax/faxaccount/class_gofaxAccount.inc b/plugins/gofax/faxaccount/class_gofaxAccount.inc
index 7a2296292233f3dfd352a07f314238fadce2d70e..41a5f5876863f211c32f1064f639ae2867a1be3f 100644 (file)
} elseif ( !$this->parent->by_object['mailAccount']->is_account){
$smarty->assign("has_mailaccount", "false");
$this->has_mailAccount= false;
+ } else {
+ $smarty->assign("has_mailaccount", "true");
}
/* Do we need to flip is_account state? */
$smarty->assign("list", $list);
if (isset($_POST['department'])){
$smarty->assign("department", $_POST['department']);
+ } else {
+ $smarty->assign("department", "");
}
$display.= $smarty->fetch (get_template_path('lists.tpl', TRUE, dirname(__FILE__)));
return ($display);
$smarty->assign("list", $list);
if (isset($_POST['department'])){
$smarty->assign("department", $_POST['department']);
+ } else {
+ $smarty->assign("department", "");
}
$display.= $smarty->fetch (get_template_path('lists.tpl', TRUE, dirname(__FILE__)));
return ($display);
index a03020446a429fa1390e12dd94be95ce6f19a154..eaa3961852f1b1bf8568ac0084fe061cdb8fcb8c 100644 (file)
{html_options values=$cblocklist output=$cblocklist}
</select>
<br>
- <input name="block_number" size=30 align=center maxlength=30 {$goFaxBlockListACL} value="">
+ <input name="block_number" size=25 align=center maxlength=30 {$goFaxBlockListACL} value="">
<input type=submit value="{t}Add{/t}" name="add_blocklist_number" {$goFaxBlockListACL}>
<input type=submit value="{t}Delete{/t}" name="delete_blocklist_number" {$goFaxBlockListACL}>
</td>
</select>
<br>
<br>
- {if $have_js ne ""}
<input type=submit name="goButton" value="{t}Choose{/t}">
- {/if}
<b>{t}List of predefined blocklists{/t}</b>
<select style="width:350px; height:250px;" name="predefined_list[]" size=15 multiple>
index 0c286f02438332d29ce4490975d3433aa90574af..e3a1ace5cb9390e83977287163b05043897a235a 100644 (file)
<div class="contentboxh" style="height:20px;">
<p class="contentboxh" style="font-size:12px"><img src="{$launchimage}" align="right" alt="[F]"><b>{t}Filters{/t}</b></p>
</div>
- <div class="contentboxb">
+ <div class="contentboxb" style="background-color:#F8F8F8">
<p class="contentboxb" style="border-top:1px solid #B0B0B0; background-color:#F8F8F8">
<table style="width:100%;">
{$alphabet}
diff --git a/plugins/gofon/phoneaccount/class_phoneAccount.inc b/plugins/gofon/phoneaccount/class_phoneAccount.inc
index 7f66c29da6b445ee6f23070b03a28e4dc2196646..c1a81694d92c95c5bb21ad45bcd34a622d41e333 100644 (file)
$forwarder_list="";
$acl= chkacl($this->acl, "goFonForwaring");
foreach ($this->forwarders as $nr => $fw){
- @list($number, $timeout)= split(";", $fw);
+ if ($fw == ""){
+ $number= ""; $timeout= "";
+ } else {
+ list($number, $timeout)= split(";", $fw);
+ }
$forwarder_list.= "<tr><td>";
$forwarder_list.= "<input name=\"fwn$nr\" size=25 align=center maxlength=60 value=\"$number\" $acl>";
$forwarder_list.= "</td><td>";
} elseif ( !$this->parent->by_object['mailAccount']->is_account){
$smarty->assign("has_mailaccount", "false");
$this->has_mailAccount= false;
+ } else {
+ $smarty->assign("has_mailaccount", "true");
}
/* Show main page */