Show
Ignore:
Timestamp:
08/24/08 23:23:04 (5 years ago)
Author:
p_lindheimer
Message:

Merged revisions 6419-6457 via svnmerge from
http://svn.freepbx.org/freepbx/branches/2.5

........

r6424 | p_lindheimer | 2008-08-19 07:47:24 -0700 (Tue, 19 Aug 2008) | 1 line


fixes #3086 add checkbox to gui elements

........

r6435 | p_lindheimer | 2008-08-21 20:06:52 -0700 (Thu, 21 Aug 2008) | 1 line


closes #3082 increase globals fields, this will not fix sqlite3 so if running sqlite3 during beta, for final release this will have to be done manually or the field lengths will continue to be limitted

........

r6456 | p_lindheimer | 2008-08-24 20:07:48 -0700 (Sun, 24 Aug 2008) | 1 line


fixes #3102, move urlencode/decode out of crypt and let the calling functions urlencode when needed

........

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk

    • Property svnmerge-integrated changed from /freepbx/branches/2.4:1-5944 /freepbx/branches/2.5:1-6418 to /freepbx/branches/2.4:1-5944 /freepbx/branches/2.5:1-6457
  • freepbx/trunk/SQL/newinstall.sql

    r6344 r6458  
    184184DROP TABLE IF EXISTS `globals`; 
    185185CREATE TABLE `globals` ( 
    186   `variable` char(20) NOT NULL default '', 
    187   `value` char(50) NOT NULL default '', 
     186  `variable` varchar(255) NOT NULL default '', 
     187  `value` varchar(255) NOT NULL default '', 
    188188  PRIMARY KEY  (`variable`) 
    189189); 
  • freepbx/trunk/SQL/newinstall.sqlite3.sql

    r6344 r6458  
    187187DROP TABLE IF EXISTS `globals`; 
    188188CREATE TABLE `globals` ( 
    189   `variable` char(20) NOT NULL default '', 
    190   `value` char(50) NOT NULL default '', 
     189  `variable` varchar(255) NOT NULL default '', 
     190  `value` varchar(255) NOT NULL default '', 
    191191  PRIMARY KEY  (`variable`) 
    192192) ;