From b6621842cd6404a10a3647ccc911f7b0f7d932e3 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Tue, 25 Dec 2012 18:26:02 -0500 Subject: [PATCH] Minor - Added default case in switch() --- plugin/bbb/listing.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/bbb/listing.php b/plugin/bbb/listing.php index 3e976d2192..6bf91849bf 100644 --- a/plugin/bbb/listing.php +++ b/plugin/bbb/listing.php @@ -64,6 +64,8 @@ if ($teacher) { case 'unpublish': //$result = $bbb->unpublish_meeting($_GET['id']); break; + default: + break; } }