Skip to content

Commit

Permalink
Fixed bug #872: List Survey-Screen: Visibilty (Private <-> Public) is…
Browse files Browse the repository at this point in the history
… mixed up

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/phpsurveyor@2826 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Apr 30, 2007
1 parent 038413e commit 7cb6e17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/html.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<td height=\"22\" width='22'>&nbsp</td>
<td height=\"22\"><strong>".$clang->gT("Survey")."</strong></td>
<td><strong>".$clang->gT("Date Created")."</strong></td>
<td><strong>".$clang->gT("Visibility")."</strong></td>
<td><strong>".$clang->gT("Access")."</strong></td>
<td><strong>".$clang->gT("Status")."</strong></td>
<td colspan=\"3\"><strong>".$clang->gT("Action")."</strong></td>
<td colspan=\"3\"><strong>".$clang->gT("Responses")."</strong></td>
Expand All @@ -63,9 +63,9 @@

if($rows['private']=="Y")
{
$visibility=$clang->gT("Private") ;
$visibility=$clang->gT("Anonymous") ;
}
else $visibility =$clang->gT("Public") ;
else $visibility =$clang->gT("Not Anonymous") ;
if($rows['active']=="Y")
{
if ($rows['useexpiry']=='Y' && $rows['expires'] < date("Y-m-d"))
Expand Down

0 comments on commit 7cb6e17

Please sign in to comment.