Remove some dead code from the UserList wobject. Fixes bug #11605
This commit is contained in:
parent
20e6ba5ed3
commit
28eabdd997
2 changed files with 2 additions and 4 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
- fixed: The template form plugin would return an empty string when getValueAsHtml was called. ( Martin Kamerbeek / Oqapi )
|
- fixed: The template form plugin would return an empty string when getValueAsHtml was called. ( Martin Kamerbeek / Oqapi )
|
||||||
- fixed #11611: Thingy: The add field pop up box has multiple "Text" field types
|
- fixed #11611: Thingy: The add field pop up box has multiple "Text" field types
|
||||||
- fixed #11610: Bad hover help for CS sortBy field
|
- fixed #11610: Bad hover help for CS sortBy field
|
||||||
|
- fixed #11605: UserList refers to non-existent "publicEmail" user profiling field
|
||||||
|
|
||||||
7.9.6
|
7.9.6
|
||||||
- new checkbox in the asset manager for clearing the package flag on import
|
- new checkbox in the asset manager for clearing the package flag on import
|
||||||
|
|
|
||||||
|
|
@ -363,7 +363,7 @@ sub view {
|
||||||
my $url = $self->session->url;
|
my $url = $self->session->url;
|
||||||
my $i18n = WebGUI::International->new($self->session, "Asset_UserList");
|
my $i18n = WebGUI::International->new($self->session, "Asset_UserList");
|
||||||
my (%var, @users, @profileField_loop, @profileFields);
|
my (%var, @users, @profileField_loop, @profileFields);
|
||||||
my ($defaultPublicProfile, $defaultPublicEmail, $user, $sth, $sql, $profileField);
|
my ($user, $sth, $sql, $profileField);
|
||||||
|
|
||||||
my $currentUrlWithoutSort = $self->getUrl();
|
my $currentUrlWithoutSort = $self->getUrl();
|
||||||
foreach ($form->param) {
|
foreach ($form->param) {
|
||||||
|
|
@ -518,9 +518,6 @@ sub view {
|
||||||
$sortBy = join '.', map { $self->session->db->quoteIdentifier($_) } split /\./, $sortBy;
|
$sortBy = join '.', map { $self->session->db->quoteIdentifier($_) } split /\./, $sortBy;
|
||||||
$sql .= " order by ".$sortBy." ".$sortOrder;
|
$sql .= " order by ".$sortBy." ".$sortOrder;
|
||||||
|
|
||||||
($defaultPublicProfile) = $self->session->db->quickArray("SELECT dataDefault FROM userProfileField WHERE fieldName='publicProfile'");
|
|
||||||
($defaultPublicEmail) = $self->session->db->quickArray("SELECT dataDefault FROM userProfileField WHERE fieldName='publicEmail'");
|
|
||||||
|
|
||||||
my $paginatePage = $form->param('pn') || 1;
|
my $paginatePage = $form->param('pn') || 1;
|
||||||
my $currentUrl = $self->getUrl();
|
my $currentUrl = $self->getUrl();
|
||||||
foreach ($form->param) {
|
foreach ($form->param) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue