Skip to content
Permalink
Browse files Browse the repository at this point in the history
fix int options
  • Loading branch information
Franck Danard authored and kguptasangoma committed Sep 3, 2019
1 parent d6eb729 commit 99e5aa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Contactmanager.class.php
Expand Up @@ -975,7 +975,7 @@ public function myShowPage() {
break;
case "showgroup":
case "addgroup":
if ($action == "showgroup" && !empty((int) $_REQUEST['group'])) {
if ($action == "showgroup" && !empty($_REQUEST['group'])) {
$group = $this->getGroupByID((int) $_REQUEST['group']);
$entries = $this->getEntriesByGroupID((int) $_REQUEST['group']);
}
Expand All @@ -984,7 +984,7 @@ public function myShowPage() {
break;
case "showentry":
case "addentry":
if (!empty((int) $_REQUEST['group'])) {
if (!empty($_REQUEST['group'])) {
$group = $this->getGroupByID((int) $_REQUEST['group']);

if ($action == "showentry" && !empty($_REQUEST['entry'])) {
Expand Down

0 comments on commit 99e5aa0

Please sign in to comment.