Index: trunk/BazaReklam/FormBadVer.cs
===================================================================
--- trunk/BazaReklam/FormBadVer.cs (revision 599)
+++ trunk/BazaReklam/FormBadVer.cs (revision 610)
@@ -12,5 +12,5 @@
     public partial class FormBadVer : Form
     {
-        readonly string _updaterUrl = ConfigurationHelper.GetSettingByKey("Application.Update.Exe") ?? "http://www.infocity.pl/baza_reklam/update/updater.exe";
+        readonly string _updaterUrl = ConfigurationHelper.GetSettingByKey("Application.Update.Exe") ?? "http://www.infocity.pl/baza_reklam/update/BazaReklam.Updater.exe";
         readonly string _zipUrl = ConfigurationHelper.GetSettingByKey("Application.Update.Zip") ?? "http://www.infocity.pl/baza_reklam/update/BazaReklam.zip";
 
@@ -28,16 +28,11 @@
         {
             button1.Enabled = false;
-            Cursor = Cursors.WaitCursor;
-            button1.Cursor = Cursors.WaitCursor;
-            webClient.DownloadFileAsync(new Uri(_updaterUrl), Environment.CurrentDirectory + "\\Updater.exe");
-            return;
+            
+            string updater = Environment.CurrentDirectory + "\\BazaReklam.Updater.exe";
 
-            //TODO: Uncomment after every user will get updated version of the Updater
-            //string updater = Environment.CurrentDirectory + "\\Updater.exe";
-
-            //if (System.IO.File.Exists(updater))
-            //    StartUpdater();
-            //else
-            //    webClient.DownloadFileAsync(new Uri(_updaterUrl), Environment.CurrentDirectory + "\\Updater.exe");
+            if (System.IO.File.Exists(updater))
+                StartUpdater();
+            else
+                webClient.DownloadFileAsync(new Uri(_updaterUrl), Environment.CurrentDirectory + "\\BazaReklam.Updater.exe");
         }
 
@@ -58,5 +53,5 @@
         private void StartUpdater()
         {
-            string updater = Environment.CurrentDirectory + "\\Updater.exe";
+            string updater = Environment.CurrentDirectory + "\\BazaReklam.Updater.exe";
             Cursor = Cursors.Default;
             button1.Cursor = Cursors.Default;
Index: trunk/BazaReklam/app.config
===================================================================
--- trunk/BazaReklam/app.config (revision 607)
+++ trunk/BazaReklam/app.config (revision 610)
@@ -8,6 +8,4 @@
   <connectionStrings>
     <clear />
-    <add name="BAZA_REKLAM_TEST" connectionString="Data Source=sql.ct.com.pl;Initial Catalog=BAZA_REKLAM_TEST;Persist Security Info=True"
-      providerName="System.Data.SqlClient" />
     <add name="BAZA_REKLAM" connectionString="Data Source=sql.ct.com.pl;Initial Catalog=BAZA_REKLAM;Persist Security Info=True"
       providerName="System.Data.SqlClient" />
@@ -38,5 +36,5 @@
     <add key="Application.Pdf.Date" value="http://truck.pl/ogloszenia/_getFile.asp?pdfdate,{0},," />
 
-    <add key="Application.Update.Exe" value="http://www.infocity.pl/baza_reklam/update/updater.exe" />
+    <add key="Application.Update.Exe" value="http://www.infocity.pl/baza_reklam/update/BazaReklam.Updater.exe" />
     <add key="Application.Update.Zip" value="http://www.infocity.pl/baza_reklam/update/BazaReklam.zip" />
   </appSettings>
