Show
Ignore:
Timestamp:
11/03/07 13:14:12 (6 years ago)
Author:
p_lindheimer
Message:

Merged revisions 5186-5188,5192,5194-5196 via svnmerge from
http://svn.freepbx.org/modules/branches/2.3

........

r5186 | p_lindheimer | 2007-11-02 15:35:24 -0700 (Fri, 02 Nov 2007) | 1 line


#2411, #2402 - fix bug so editing a device does not logout the user, and add default_user field along with fix to macro-user-logoff so that default user information is retained when a user logs off, and fix issue that was allowing a blank extension to be created when javascript was disabled or bugs existed which would make extensions stop working on a system

........

r5187 | p_lindheimer | 2007-11-02 15:47:03 -0700 (Fri, 02 Nov 2007) | 1 line


#2359 deal with other special characters in fax did during fax processing

........

r5188 | p_lindheimer | 2007-11-02 15:57:34 -0700 (Fri, 02 Nov 2007) | 1 line


move Macro(user-callerid) to be called with each conf to accomodate future language settings

........

r5192 | p_lindheimer | 2007-11-02 18:04:40 -0700 (Fri, 02 Nov 2007) | 1 line


#2455 allow + and other valid dial digits

........

r5196 | p_lindheimer | 2007-11-03 09:33:45 -0700 (Sat, 03 Nov 2007) | 1 line


fix to r5186 (#2411, #2402): when editing device into a fixed device, reset user. When changing a device from a fixed to adhoc, reset user

........

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.4

    • Property svnmerge-integrated changed from /modules/branches/2.3:1-5080,5111,5128,5130,5155,5157,5159,5163,5165 to /modules/branches/2.3:1-5080,5111,5128,5130,5155,5157,5159,5163,5165,5186-5188,5190,5192,5194-5196
  • modules/branches/2.4/blacklist/page.blacklist.php

    r4592 r5197  
    106106  </tr> 
    107107  </table> 
    108  
    109108<script language="javascript"> 
    110109<!-- 
     
    113112theForm.number.focus(); 
    114113 
     114function isDialDigitsPlus(s) 
     115{ 
     116  var i; 
     117 
     118  if (isEmpty(s)) { 
     119    return false; 
     120  } 
     121 
     122  for (i = 0; i < s.length; i++) { 
     123    var c = s.charAt(i); 
     124 
     125    if (!isDialDigitChar(c) && (c != "+")) return false; 
     126  } 
     127  return true; 
     128} 
     129 
     130 
    115131function edit_onsubmit() { 
    116132  defaultEmptyOK = false; 
    117         if (!isInteger(theForm.number.value)) 
     133        if (!isDialDigitsPlus(theForm.number.value)) 
    118134                return warnInvalid(theForm.number, "Please enter a valid Number"); 
    119135  return true;