Moved extras, uploadsURL, and uploadsPath settings to config file.
This commit is contained in:
parent
b81aa7f9aa
commit
29d2b0e63c
19 changed files with 86 additions and 99 deletions
|
|
@ -7,6 +7,23 @@ upgrading from one version to the next, or even between multiple
|
|||
versions. Be sure to heed the warnings contained herein as they will
|
||||
save you many hours of grief.
|
||||
|
||||
4.3.0
|
||||
--------------------------------------------------------------------
|
||||
* The settings "extras", "uploadsURL", and "uploadsPath" have all
|
||||
been moved to the config file to make installations easier.
|
||||
This means that you must add those lines to your old
|
||||
configuration files before you upgrade. See
|
||||
etc/WebGUI.conf.original for details.
|
||||
|
||||
* For wobject and macro developers this also means that any third-
|
||||
party wobjects that use those settings, must be modified to
|
||||
use the new variable name. The following is the change in
|
||||
relationship:
|
||||
|
||||
$session{setting}{lib} = $session{config}{extras}
|
||||
$session{setting}{attachmentDirectoryWeb} = $session{config}{uploadsURL}
|
||||
$session{setting}{attachmentDirectoryLocal} = $session{config}{uploadsPath}
|
||||
|
||||
4.2.0
|
||||
--------------------------------------------------------------------
|
||||
* All Discussion properties have been reset to enable the new
|
||||
|
|
|
|||
|
|
@ -649,8 +649,13 @@ INSERT INTO international VALUES (555,'WebGUI',8,'Modifica il karma di questo ut
|
|||
INSERT INTO international VALUES (556,'WebGUI',8,'Ammontare');
|
||||
INSERT INTO international VALUES (557,'WebGUI',8,'Descrizione');
|
||||
INSERT INTO international VALUES (558,'WebGUI',8,'Modifica il karma dell\'utente');
|
||||
|
||||
|
||||
delete from international where namespace='WebGUI' and internationalId=129;
|
||||
delete from international where namespace='WebGUI' and internationalId=132;
|
||||
delete from international where namespace='WebGUI' and internationalId=131;
|
||||
delete from international where namespace='WebGUI' and internationalId=128;
|
||||
delete from settings where name='attachmentDirectoryLocal';
|
||||
delete from settings where name='attachmentDirectoryWeb';
|
||||
delete from settings where name='lib';
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue