diff --git a/core/Version.php b/core/Version.php
index 9176abc0f9f9bffec1335e3f1722ead34e24cbd0..f82fc394c6bc192c188633f66dbebe6775811cea 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -21,5 +21,5 @@ final class Piwik_Version
 	 * Current Piwik version
 	 * @var string
 	 */
-	const VERSION = '1.8.1';
+	const VERSION = '1.8.2';
 }
diff --git a/lang/en.php b/lang/en.php
index 1860eba6ab2ad87052d5b9568152e9e88d7c1a14..6f5ece8866527033b5cede4c19a2710dc72a36bf 100644
--- a/lang/en.php
+++ b/lang/en.php
@@ -879,7 +879,7 @@ $translations = array(
 	'Installation_InsufficientPrivilegesHelp' => 'You can add these privileges by using a tool such as phpMyAdmin or by executing the right SQL queries. If you don\'t know how to do these things, please ask your sysadmin to grant these privileges for you.',
 	'LanguagesManager_PluginDescription' => 'This plugin will display a list of the available languages for the Piwik interface. The language selected will be saved in the preferences for each user.',
 	'LanguagesManager_AboutPiwikTranslations' => 'About Piwik translations',
-	'Live_PluginDescription' => 'Spy on your visitors, live, in real-time!',
+	'Live_PluginDescription' => 'Watch your visitors live in real-time!',
 	'Live_LinkVisitorLog' => 'View detailed visitor log',
 	'Live_Actions' => 'Actions',
 	'Live_Action' => 'Action',
diff --git a/plugins/Installation/FormDatabaseSetup.php b/plugins/Installation/FormDatabaseSetup.php
index e288fe0ea2c40fcd03ba43381d2e3a4496f40422..ed1edaf4ab77777b70b0f5a34b264c0ba5dda771 100644
--- a/plugins/Installation/FormDatabaseSetup.php
+++ b/plugins/Installation/FormDatabaseSetup.php
@@ -213,7 +213,11 @@ class Piwik_Installation_FormDatabaseSetup_Rule_checkUserPrivileges extends HTML
 			{
 				try
 				{
-					$db->exec($sql);
+					if( in_array($privilegeType, array('SELECT'))) {
+						$db->fetchAll($sql);
+					} else {
+						$db->exec($sql);
+					}
 				}
 				catch (Exception $ex)
 				{