summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b0df0c5)
raw | patch | inline | side by side (parent: b0df0c5)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 18 Aug 2005 12:05:16 +0000 (12:05 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 18 Aug 2005 12:05:16 +0000 (12:05 +0000) |
Can't rename conference fixed
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1181 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1181 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/plugins/gofon/conference/class_phoneConferenceGeneric.inc b/plugins/gofon/conference/class_phoneConferenceGeneric.inc
index be02495cfc958ed2f030823432865fc54ae9f988..89f1d56da665935ac79c176b036f013de8f644e5 100644 (file)
var $ou = "";
var $goFonPIN = "";
var $acl = "";
+ var $old_cn = "";
var $goFonConferenceOption = "";
var $goFonConferenceOption_P = ""; // Set PIN
$this->old_tele_number = $this->telephoneNumber;
}
$this->old_dn = $this->dn;
+ $this->old_cn = $this->cn;
}
function execute()
}
$num = $this->telephoneNumber;
- if((isset($numbers[$num]))&&(($numbers[$num]['cn'][0]!=$this->cn))){
+ if((isset($numbers[$num]))&&(($numbers[$num]['cn'][0]!=$this->old_cn))){
if(isset($numbers[$num]['uid'][0])){
return sprintf(_("The specified telephonenumber '%s' is already assigned to '%s'."),$num,$numbers[$num]['uid'][0]);
}else{
diff --git a/plugins/gofon/conference/class_phoneConferenceManagment.inc b/plugins/gofon/conference/class_phoneConferenceManagment.inc
index 34ff88093db0c260a1a8d390c7e175c195581f8d..71c0efc951953547378daa2db51ded22c24f403c 100644 (file)
foreach($this->conferences as $conferencekey => $conference ){
if((isset($conference['goFonPIN'][0]))&&($this->ui->dn==$conference['goFonConferenceOwner'][0])){
- $pin = $conference['goFonPIN'][0];
+ $pin = "<img src='images/list_password.png' title='PIN : ".$conference['goFonPIN'][0]."' alt='PIN'>";
}else{
$pin = " ";
}
index 43bd158c2d643a20c92706ae93dc6f46b6e9b001..fd5466ac1210a4bdb38e4ff30b635aaa4a05fec5 100644 (file)
</td>
<td>
- {t}PIN{/t} <input type='text' name="goFonPIN" {$goFonPINACL} id="goFonPIN" value="{$goFonPIN}">
+ {t}PIN{/t} <input type='password' name="goFonPIN" {$goFonPINACL} id="goFonPIN" value="{$goFonPIN}" title="{$goFonPIN}">
</td>
</tr>
<tr>