diff -p -up webmin-1.441/mysql/index.cgi.mysql webmin-1.441/mysql/index.cgi --- webmin-1.441/mysql/index.cgi.mysql 2009-04-09 16:28:14.000000000 -0300 +++ webmin-1.441/mysql/index.cgi 2009-04-09 16:29:26.000000000 -0300 @@ -260,15 +260,15 @@ else { # Check if the optional perl modules are installed if (foreign_available("cpan")) { eval "use DBI"; - push(@needs, "DBI") if ($@); + push(@needs, "perl-DBI") if ($@); $nodbi++ if ($@); eval "use DBD::mysql"; - push(@needs, "DBD::mysql") if ($@); + push(@needs, "perl-Mysql") if ($@); if (@needs) { - $needs = &urlize(join(" ", @needs)); - print "
",&text(@needs == 2 ? 'index_nomods' : 'index_nomod', @needs, - "/cpan/download.cgi?source=3&cpan=$needs&mode=2&return=/$module_name/&returndesc=".&urlize($text{'index_return'})), - "
\n"; + print "
Warning, the following package(s) are missing from your system\n". + "for reliable access to your MySQL database: @needs. To install them,\n". + "you may use the graphical program rpmdrake or the commandline program\n". + "urpmi. Then, re-load this page.\n"; } } }