diff --git a/modules/s_control.cc b/modules/s_control.cc index bc407de24..ef41fd765 100644 --- a/modules/s_control.cc +++ b/modules/s_control.cc @@ -105,12 +105,12 @@ try { char val[512]; std::stringstream ss; - ss << "
";
+	ss << "";
 	for(const auto &p : conf::items)
-		ss << std::setw(32) << std::right << p.first
-		   << " = " << p.second->get(val)
-		   << "
"; - ss << ""; + ss << ""; + ss << "
" << std::setw(32) << std::right << p.first + << "" << p.second->get(val) + << "
"; msghtml(control_room, m::me.user_id, ss.str()); }