merging 5.4.3 changes

This commit is contained in:
JT Smith 2003-07-27 21:32:32 +00:00
parent c1f4105699
commit dc9a81080a
17 changed files with 106 additions and 51 deletions

View file

@ -1,6 +1,5 @@
5.5.0 5.5.0
- Rewrote the discussion system and added many new features in the process. - Rewrote the discussion system and added many new features in the process.
- Fixed a bug in the collateralImport.pl script.
- Added external database group privileges. (Thanks to Andy Grundman.) - Added external database group privileges. (Thanks to Andy Grundman.)
- Added support for encryptLogin user setting. (Thanks to Hal Roberts.) - Added support for encryptLogin user setting. (Thanks to Hal Roberts.)
- Added anonymous response option to Survey. (Thanks to Andy Grundman.) - Added anonymous response option to Survey. (Thanks to Andy Grundman.)
@ -14,6 +13,39 @@
5.4.3
- Fixed a bug where CM's could have deleted the entire collateral manager
contents if they deleted an item, then hit their back button and deleted it
again.
- Fixed a bug in the collateralImport.pl script.
- Fixed a bug where exports of themes would only work if an image was
included in the theme.
- Fixed a bug in the RandomSnippet and RandomImage macros where they would
crash the page if an invalid collateral folder were specified.
- Fixed a bug when wobject privileges were turned on and a user had the
privileges to edit a page, they could not add wobjects to the page.
- Fixed a bug where all of the articles on a page would get the same template
for one page view after a properties save.
- Fixed a bug where the email address would not appear when editing a user
profile after an admin created a new account. (Thanks to Arne Dokken.)
- Fixed a bug in editing secondary admins. (Thanks to Leendert Bottelberghs.)
- Fixed an ordering bug on the list of users in the Manage Users In Group
page.
- Fixed an LDAP auth bug where users could not authenticate if RDN = DN.
(Thanks to Chris Jackson.)
- Fixed a bug in the DataForm where multiple items in a check list were not
being emailed.
- Fixed a bug in the Syndicated Content wobject where feeds with only one
item would cause a problem. (Thanks to Len Kranendonk.)
- Made session page setup use the same mechanism to mangle urls as the rest
of WebGUI uses.
- Fixed a bug in DataForm where the name of the last form element added would
appear as the default value of another form field if it were called "name".
- Fixed a potential security problem in the collateral manager where content
managers could delete collateral they didn't own.
5.4.2 5.4.2
- Fixed tab forms for better support with older browsers, less resource usage, and a cookie bug that would log users out after editing their stie for a while. - Fixed tab forms for better support with older browsers, less resource usage, and a cookie bug that would log users out after editing their stie for a while.
- Updated German translation. (Thanks to Andreas Graf.) - Updated German translation. (Thanks to Andreas Graf.)

View file

@ -8,17 +8,20 @@ The following people/companies are responsible for WebGUI:
WebGUI Core..........................JT Smith / Plain Black WebGUI Core..........................JT Smith / Plain Black
Contributing Developers..............Peter Beardsley / Appropriate Solutions Contributing Developers..............Peter Beardsley / Appropriate Solutions
Leendert Bottelberghs
Richard Caelius / 100 World Richard Caelius / 100 World
Richard Clark Richard Clark
Doug Collinge Doug Collinge
Flavio Curti Flavio Curti
Jeff Depons / WDI Jeff Depons / WDI
Frank Dillon / WDI Frank Dillon / WDI
Arne Dokken
Junying Du / WDI Junying Du / WDI
Ed Van Duinen / UNC Ed Van Duinen / UNC
Greg Fast / WDI Greg Fast / WDI
Chris Gebhardt / OpenServe Chris Gebhardt / OpenServe
Andy Grundman Andy Grundman
Chris Jackson
Koen de Jonge / ProcoliX Koen de Jonge / ProcoliX
Martin Kamerbeek / ProcoliX Martin Kamerbeek / ProcoliX
John W. Krahn John W. Krahn

View file

@ -0,0 +1,2 @@
insert into webguiVersion values ('5.4.3','upgrade',unix_timestamp());

View file

@ -669,6 +669,7 @@ A hash reference containing the data you wish to persist to the filesystem.
sub saveFromHashref { sub saveFromHashref {
my ($self, $hashref) = @_; my ($self, $hashref) = @_;
$self->getNode->create();
store $hashref, $self->getPath; store $hashref, $self->getPath;
return $self->getFilename; return $self->getFilename;
} }

View file

@ -112,14 +112,17 @@ sub registrationFormSave {
$ldap->bind; $ldap->bind;
my $search = $ldap->search (base => $uri->dn, filter => $session{setting}{ldapId}."=".$session{form}{'authLDAP.ldapId'}); my $search = $ldap->search (base => $uri->dn, filter => $session{setting}{ldapId}."=".$session{form}{'authLDAP.ldapId'});
if (defined $search->entry(0)) { if (defined $search->entry(0)) {
$connectDN = $search->entry(0)->get_value($session{setting}{ldapUserRDN}); if ($session{setting}{ldapUserRDN} eq 'dn') {
$connectDN = $search->entry(0)->dn;
} else {
$connectDN = $search->entry(0)->get_value($session{setting}{ldapUserRDN});
}
} }
$ldap->unbind; $ldap->unbind;
WebGUI::Authentication::saveParams($uid,'LDAP', WebGUI::Authentication::saveParams($uid,'LDAP', {
{
connectDN => $connectDN, connectDN => $connectDN,
ldapUrl => $session{setting}{ldapURL} ldapUrl => $session{setting}{ldapURL}
}); });
} }
#------------------------------------------------------------------- #-------------------------------------------------------------------
@ -130,7 +133,11 @@ sub registrationFormValidate {
if ($ldap->bind) { if ($ldap->bind) {
$search = $ldap->search (base=>$uri->dn,filter=>$session{setting}{ldapId}."=".$session{form}{'authLDAP.ldapId'}); $search = $ldap->search (base=>$uri->dn,filter=>$session{setting}{ldapId}."=".$session{form}{'authLDAP.ldapId'});
if (defined $search->entry(0)) { if (defined $search->entry(0)) {
$connectDN = $search->entry(0)->get_value($session{setting}{ldapUserRDN}); if ($session{setting}{ldapUserRDN} eq 'dn') {
$connectDN = $search->entry(0)->dn;
} else {
$connectDN = $search->entry(0)->get_value($session{setting}{ldapUserRDN});
}
$ldap->unbind; $ldap->unbind;
$ldap = Net::LDAP->new($uri->host, (port=>$uri->port)) or $error .= WebGUI::International::get(2,'Auth/LDAP'); $ldap = Net::LDAP->new($uri->host, (port=>$uri->port)) or $error .= WebGUI::International::get(2,'Auth/LDAP');
$auth = $ldap->bind(dn=>$connectDN, password=>$session{form}{'authLDAP.ldapPassword'}); $auth = $ldap->bind(dn=>$connectDN, password=>$session{form}{'authLDAP.ldapPassword'});

View file

@ -72,8 +72,10 @@ Delete's this collateral item.
=cut =cut
sub delete { sub delete {
$_[0]->deleteNode; if ($_[0]->{_properties}->{collateralId} > 0) { # blocks deletion of all collateral in the event that no valid collateral id exists
WebGUI::SQL->write("delete from collateral where collateralId=".$_[0]->get("collateralId")); $_[0]->deleteNode;
WebGUI::SQL->write("delete from collateral where collateralId=".$_[0]->get("collateralId"));
}
} }

View file

@ -325,7 +325,7 @@ If specified the admin flag will be set to this value.
=cut =cut
sub userGroupAdmin { sub userGroupAdmin {
if ($_[2]) { if ($_[2] ne "") {
WebGUI::SQL->write("update groupings set groupAdmin=$_[2] where groupId=$_[1] and userId=$_[0]"); WebGUI::SQL->write("update groupings set groupAdmin=$_[2] where groupId=$_[1] and userId=$_[0]");
return $_[2]; return $_[2];
} else { } else {

View file

@ -20,12 +20,11 @@ use WebGUI::SQL;
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub process { sub process {
my @param = WebGUI::Macro::getParams($_[0]); my @param = WebGUI::Macro::getParams($_[0]);
my $collateralFolderId; my $collateralFolderId = 0;
if ($param[0] ne "") { if ($param[0] ne "") {
($collateralFolderId) = WebGUI::SQL->quickArray("select collateralFolderId from collateralFolder ($collateralFolderId) = WebGUI::SQL->quickArray("select collateralFolderId from collateralFolder
where name=".quote($param[0])); where name=".quote($param[0]));
} else { $collateralFolderId = 0 unless ($collateralFolderId);
$collateralFolderId = 0; #Root
} }
my @images = WebGUI::SQL->buildArray("select collateralId from collateral my @images = WebGUI::SQL->buildArray("select collateralId from collateral
where collateralType='image' and collateralFolderId=".$collateralFolderId); where collateralType='image' and collateralFolderId=".$collateralFolderId);

View file

@ -20,12 +20,11 @@ use WebGUI::SQL;
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub process { sub process {
my @param = WebGUI::Macro::getParams($_[0]); my @param = WebGUI::Macro::getParams($_[0]);
my $collateralFolderId; my $collateralFolderId = 0;
if ($param[0] ne "") { if ($param[0] ne "") {
($collateralFolderId) = WebGUI::SQL->quickArray("select collateralFolderId from collateralFolder ($collateralFolderId) = WebGUI::SQL->quickArray("select collateralFolderId from collateralFolder
where name=".quote($param[0])); where name=".quote($param[0]));
} else { $collateralFolderId = 0 unless ($collateralFolderId);
$collateralFolderId = 0; #Root
} }
my @snippets = WebGUI::SQL->buildArray("select collateralId from collateral my @snippets = WebGUI::SQL->buildArray("select collateralId from collateral
where collateralType='snippet' and collateralFolderId=".$collateralFolderId); where collateralType='snippet' and collateralFolderId=".$collateralFolderId);

View file

@ -55,15 +55,18 @@ sub _submenu {
$menu{WebGUI::URL::page('op=deleteCollateral&cid='.$session{form}{cid})} = WebGUI::International::get(765); $menu{WebGUI::URL::page('op=deleteCollateral&cid='.$session{form}{cid})} = WebGUI::International::get(765);
} }
$menu{WebGUI::URL::page('op=editCollateralFolder')} = WebGUI::International::get(759); $menu{WebGUI::URL::page('op=editCollateralFolder')} = WebGUI::International::get(759);
$menu{WebGUI::URL::page('op=emptyCollateralFolder')} = WebGUI::International::get(980); if (WebGUI::Privilege::isInGroup(3)) {
$menu{WebGUI::URL::page('op=deleteCollateralFolder')} = WebGUI::International::get(760); $menu{WebGUI::URL::page('op=emptyCollateralFolder')} = WebGUI::International::get(980);
$menu{WebGUI::URL::page('op=deleteCollateralFolder')} = WebGUI::International::get(760);
}
$menu{WebGUI::URL::page('op=listCollateral')} = WebGUI::International::get(766); $menu{WebGUI::URL::page('op=listCollateral')} = WebGUI::International::get(766);
return menuWrapper($_[0],\%menu); return menuWrapper($_[0],\%menu);
} }
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_deleteCollateral { sub www_deleteCollateral {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4)); my $collateral = WebGUI::Collateral->new($session{form}{cid});
return WebGUI::Privilege::insufficient unless ($collateral->get("userId") == $session{user}{userId} || WebGUI::Privilege::isInGroup(3));
my $output = '<h1>'.WebGUI::International::get(42).'</h1>'; my $output = '<h1>'.WebGUI::International::get(42).'</h1>';
$output .= WebGUI::International::get(774).'<p/><div align="center">'; $output .= WebGUI::International::get(774).'<p/><div align="center">';
$output .= '<a href="'.WebGUI::URL::page('op=deleteCollateralConfirm&cid='.$session{form}{cid}).'">' $output .= '<a href="'.WebGUI::URL::page('op=deleteCollateralConfirm&cid='.$session{form}{cid}).'">'
@ -76,16 +79,25 @@ sub www_deleteCollateral {
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_deleteCollateralConfirm { sub www_deleteCollateralConfirm {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4));
my $collateral = WebGUI::Collateral->new($session{form}{cid}); my $collateral = WebGUI::Collateral->new($session{form}{cid});
return WebGUI::Privilege::insufficient unless ($collateral->get("userId") == $session{user}{userId} || WebGUI::Privilege::isInGroup(3));
$collateral->delete; $collateral->delete;
WebGUI::Session::deleteScratch("collateralPageNumber"); WebGUI::Session::deleteScratch("collateralPageNumber");
return www_listCollateral(); return www_listCollateral();
} }
#-------------------------------------------------------------------
sub www_deleteCollateralFile {
my $collateral = WebGUI::Collateral->new($session{form}{cid});
return WebGUI::Privilege::insufficient unless ($collateral->get("userId") == $session{user}{userId} || WebGUI::Privilege::isInGroup(3));
my $collateral = WebGUI::Collateral->new($session{form}{cid});
$collateral->deleteFile;
return www_editCollateral($collateral);
}
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_deleteCollateralFolder { sub www_deleteCollateralFolder {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4)); return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(3));
return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999); return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999);
my $output = '<h1>'.WebGUI::International::get(42).'</h1>'; my $output = '<h1>'.WebGUI::International::get(42).'</h1>';
$output .= WebGUI::International::get(775).'<p/><div align="center">'; $output .= WebGUI::International::get(775).'<p/><div align="center">';
@ -99,7 +111,7 @@ sub www_deleteCollateralFolder {
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_deleteCollateralFolderConfirm { sub www_deleteCollateralFolderConfirm {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4)); return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(3));
return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999); return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999);
my $folders = WebGUI::CollateralFolder->getTree({-minimumFields => 1}); my $folders = WebGUI::CollateralFolder->getTree({-minimumFields => 1});
if (my $deadFolder = $folders->{$session{scratch}{collateralFolderId}}) { if (my $deadFolder = $folders->{$session{scratch}{collateralFolderId}}) {
@ -112,7 +124,7 @@ sub www_deleteCollateralFolderConfirm {
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_emptyCollateralFolder { sub www_emptyCollateralFolder {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4)); return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(3));
return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999); return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999);
my $output = '<h1>'.WebGUI::International::get(42).'</h1>'; my $output = '<h1>'.WebGUI::International::get(42).'</h1>';
$output .= WebGUI::International::get(979).'<p/><div align="center">'; $output .= WebGUI::International::get(979).'<p/><div align="center">';
@ -126,21 +138,13 @@ sub www_emptyCollateralFolder {
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_emptyCollateralFolderConfirm { sub www_emptyCollateralFolderConfirm {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4)); return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(3));
return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999); return WebGUI::Privilege::vitalComponent() unless ($session{scratch}{collateralFolderId} > 999);
my @collateralIds = WebGUI::SQL->buildArray("select collateralId from collateral where collateralFolderId=".$session{scratch}{collateralFolderId}); my @collateralIds = WebGUI::SQL->buildArray("select collateralId from collateral where collateralFolderId=".$session{scratch}{collateralFolderId});
WebGUI::Collateral->multiDelete(@collateralIds); WebGUI::Collateral->multiDelete(@collateralIds);
return www_listCollateral(); return www_listCollateral();
} }
#-------------------------------------------------------------------
sub www_deleteCollateralFile {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4));
my $collateral = WebGUI::Collateral->new($session{form}{cid});
$collateral->deleteFile;
return www_editCollateral($collateral);
}
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_editCollateral { sub www_editCollateral {
return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4)); return WebGUI::Privilege::insufficient unless (WebGUI::Privilege::isInGroup(4));

View file

@ -260,7 +260,7 @@ sub www_editGrouping {
sub www_editGroupingSave { sub www_editGroupingSave {
return WebGUI::Privilege::adminOnly() unless (WebGUI::Privilege::isInGroup(3)); return WebGUI::Privilege::adminOnly() unless (WebGUI::Privilege::isInGroup(3));
WebGUI::Grouping::userGroupExpireDate($session{form}{uid},$session{form}{gid},setToEpoch($session{form}{expireDate})); WebGUI::Grouping::userGroupExpireDate($session{form}{uid},$session{form}{gid},setToEpoch($session{form}{expireDate}));
WebGUI::Grouping::userGroupAdmin($session{form}{uid},$session{form}{gid},setToEpoch($session{form}{groupAdmin})); WebGUI::Grouping::userGroupAdmin($session{form}{uid},$session{form}{gid},$session{form}{groupAdmin});
return www_editUserGroup(); return www_editUserGroup();
} }
@ -429,7 +429,7 @@ sub www_editUserProfile {
} elsif ($method) { } elsif ($method) {
if ($session{form}{$data{fieldName}}) { if ($session{form}{$data{fieldName}}) {
$default = $session{form}{$data{fieldName}}; $default = $session{form}{$data{fieldName}};
} elsif (exists $session{user}{$data{fieldName}}) { } elsif (exists $user{$data{fieldName}}) {
$default = $user{$data{fieldName}}; $default = $user{$data{fieldName}};
} else { } else {
$default = eval $data{dataDefault}; $default = eval $data{dataDefault};

View file

@ -129,7 +129,7 @@ The unique identifier for the wobject that you wish to check the privileges on.
sub canEditWobject { sub canEditWobject {
my (%wobject); my (%wobject);
tie %wobject, 'Tie::CPHash'; tie %wobject, 'Tie::CPHash';
return canEditPage() unless ($session{setting}{wobjectPrivileges} == 1); return canEditPage() if ($session{setting}{wobjectPrivileges} != 1 || $_[0] eq "new");
%wobject = WebGUI::SQL->quickHash("select ownerId,groupIdEdit from wobject where wobjectId=".quote($_[0])); %wobject = WebGUI::SQL->quickHash("select ownerId,groupIdEdit from wobject where wobjectId=".quote($_[0]));
if ($session{user}{userId} == $wobject{ownerId}) { if ($session{user}{userId} == $wobject{ownerId}) {
return 1; return 1;

View file

@ -24,6 +24,7 @@ use strict;
use Tie::CPHash; use Tie::CPHash;
use WebGUI::ErrorHandler; use WebGUI::ErrorHandler;
use WebGUI::SQL; use WebGUI::SQL;
use WebGUI::URL;
use WebGUI::Utility; use WebGUI::Utility;
our @ISA = qw(Exporter); our @ISA = qw(Exporter);

View file

@ -50,9 +50,9 @@ These subroutines are available from this package:
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub _getSiteURL { sub _getSiteURL {
my $site = $session{env}{HTTP_HOST} || $session{config}{sitename}; my $site = $WebGUI::Session::session{env}{HTTP_HOST} || $WebGUI::Session::session{config}{sitename};
my $proto = "http://"; my $proto = "http://";
if ($session{env}{SERVER_PORT} == 443) { if ($WebGUI::Session::session{env}{SERVER_PORT} == 443) {
$proto = "https://"; $proto = "https://";
} }
return $proto.$site; return $proto.$site;
@ -137,11 +137,11 @@ Name value pairs to add to the URL in the form of:
=cut =cut
sub gateway { sub gateway {
my $url = _getSiteURL().$session{config}{scripturl}.'/'.$_[0]; my $url = _getSiteURL().$WebGUI::Session::session{config}{scripturl}.'/'.$_[0];
if ($_[1]) { if ($_[1]) {
$url = append($url,$_[1]); $url = append($url,$_[1]);
} }
if ($session{setting}{preventProxyCache} == 1) { if ($WebGUI::Session::session{setting}{preventProxyCache} == 1) {
$url = append($url,"noCache=".randint(0,1000).';'.time()); $url = append($url,"noCache=".randint(0,1000).';'.time());
} }
return $url; return $url;
@ -195,11 +195,11 @@ Name value pairs to add to the URL in the form of:
=cut =cut
sub page { sub page {
my $url = _getSiteURL().$session{page}{url}; my $url = _getSiteURL().$WebGUI::Session::session{page}{url};
if ($_[0]) { if ($_[0]) {
$url = append($url,$_[0]); $url = append($url,$_[0]);
} }
if ($session{setting}{preventProxyCache} == 1) { if ($WebGUI::Session::session{setting}{preventProxyCache} == 1) {
$url = append($url,"noCache=".randint(0,1000).';'.time()); $url = append($url,"noCache=".randint(0,1000).';'.time());
} }
return $url; return $url;

View file

@ -191,10 +191,14 @@ sub www_view {
$var{"post.URL"} = WebGUI::URL::page('func=post&mid=new&wid='.$_[0]->get("wobjectId")); $var{"post.URL"} = WebGUI::URL::page('func=post&mid=new&wid='.$_[0]->get("wobjectId"));
$var{"post.label"} = WebGUI::International::get(24,$_[0]->get("namespace")); $var{"post.label"} = WebGUI::International::get(24,$_[0]->get("namespace"));
} }
my $templateId = $_[0]->getValue("templateId");
if ($session{form}{func} eq "editSave") {
$templateId = $_[0]->get("templateId");
}
if ($session{form}{forumOp}) { if ($session{form}{forumOp}) {
return WebGUI::Forum::Web::forumOp(WebGUI::URL::page("func=view&amp;wid=".$_[0]->get("wobjectId"))); return WebGUI::Forum::Web::forumOp(WebGUI::URL::page("func=view&amp;wid=".$_[0]->get("wobjectId")));
} else { } else {
return $_[0]->processTemplate($_[0]->getValue("templateId"),\%var).WebGUI::Forum::Web::viewForum(WebGUI::URL::page("func=view&amp;wid=".$_[0]->get("wobjectId")),1); return $_[0]->processTemplate($templateId,\%var).WebGUI::Forum::Web::viewForum(WebGUI::URL::page("func=view&amp;wid=".$_[0]->get("wobjectId")),1);
} }
} }

View file

@ -197,11 +197,12 @@ sub getRecordTemplateVars {
my $sth = WebGUI::SQL->read("$select from DataForm_field as a $join $where order by a.sequenceNumber"); my $sth = WebGUI::SQL->read("$select from DataForm_field as a $join $where order by a.sequenceNumber");
while (%data = $sth->hash) { while (%data = $sth->hash) {
my $formValue = $session{form}{$data{name}}; my $formValue = $session{form}{$data{name}};
if (defined $formValue) { if ((not exists $data{value}) && $session{form}{func} ne "editSave" && $session{form}{func} ne "editFieldSave" && defined $formValue) {
$data{value} = $formValue; $data{value} = $formValue;
} elsif (not exists $data{value}) { }
$data{value} = WebGUI::Macro::process($data{defaultValue}); if (not exists $data{value}) {
} $data{value} = WebGUI::Macro::process($data{defaultValue});
}
my $hidden = (($data{status} eq "hidden" || ($data{isMailField} && !$self->get("mailData"))) && !$session{var}{adminOn}); my $hidden = (($data{status} eq "hidden" || ($data{isMailField} && !$self->get("mailData"))) && !$session{var}{adminOn});
push(@fields,{ push(@fields,{
"field.form" => _createField(\%data), "field.form" => _createField(\%data),
@ -389,7 +390,7 @@ sub www_editSave {
label=>WebGUI::International::get(10,$_[0]->get("namespace")), label=>WebGUI::International::get(10,$_[0]->get("namespace")),
status=>"editable", status=>"editable",
isMailField=>1, isMailField=>1,
width=>45, width=>0,
type=>"email" type=>"email"
}); });
$_[0]->setCollateral("DataForm_field","DataForm_fieldId",{ $_[0]->setCollateral("DataForm_field","DataForm_fieldId",{
@ -398,7 +399,7 @@ sub www_editSave {
label=>WebGUI::International::get(11,$_[0]->get("namespace")), label=>WebGUI::International::get(11,$_[0]->get("namespace")),
status=>"hidden", status=>"hidden",
isMailField=>1, isMailField=>1,
width=>45, width=>0,
type=>"email", type=>"email",
defaultValue=>$session{setting}{companyEmail} defaultValue=>$session{setting}{companyEmail}
}); });
@ -408,7 +409,7 @@ sub www_editSave {
label=>WebGUI::International::get(12,$_[0]->get("namespace")), label=>WebGUI::International::get(12,$_[0]->get("namespace")),
status=>"hidden", status=>"hidden",
isMailField=>1, isMailField=>1,
width=>45, width=>0,
type=>"email" type=>"email"
}); });
$_[0]->setCollateral("DataForm_field","DataForm_fieldId",{ $_[0]->setCollateral("DataForm_field","DataForm_fieldId",{
@ -417,7 +418,7 @@ sub www_editSave {
label=>WebGUI::International::get(13,$_[0]->get("namespace")), label=>WebGUI::International::get(13,$_[0]->get("namespace")),
status=>"hidden", status=>"hidden",
isMailField=>1, isMailField=>1,
width=>45, width=>0,
type=>"email" type=>"email"
}); });
$_[0]->setCollateral("DataForm_field","DataForm_fieldId",{ $_[0]->setCollateral("DataForm_field","DataForm_fieldId",{
@ -426,7 +427,7 @@ sub www_editSave {
label=>WebGUI::International::get(14,$_[0]->get("namespace")), label=>WebGUI::International::get(14,$_[0]->get("namespace")),
status=>"editable", status=>"editable",
isMailField=>1, isMailField=>1,
width=>45, width=>0,
type=>"text", type=>"text",
defaultValue=>WebGUI::International::get(2,$_[0]->get("namespace")) defaultValue=>WebGUI::International::get(2,$_[0]->get("namespace"))
}); });