Skip to content
Snippets Groups Projects
Commit 8f91aa34 authored by Sebastian's avatar Sebastian
Browse files

Removed the output of arguments given in a constructor

parent af873d63
No related branches found
No related tags found
No related merge requests found
......@@ -77,9 +77,10 @@ public function __construct() {
$arg_list = func_get_args();
for ($i = 0; $i < $numargs; $i++) {
echo "Argument $i is: " . $arg_list[$i] . "<br />\n";
}
#debug output for the number of arguments
# for ($i = 0; $i < $numargs; $i++) {
# echo "Argument $i is: " . $arg_list[$i] . "<br />\n";
# }
// $this->createMeeting( $this->userName, $this->meetingID, $this->welcomeString, $this->modPW, $this->attPW, $this->securitySalt, $this->URL );
// echo "Object created";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment