OmniGears: Fix switch for captive portal detection

Change-Id: Idac25f14770c12a807a2413b864a247bf6da441f
diff --git a/res/values/custom_strings.xml b/res/values/custom_strings.xml
index 2ae2b58..b553d0b 100644
--- a/res/values/custom_strings.xml
+++ b/res/values/custom_strings.xml
@@ -297,9 +297,9 @@
     <string name="network_traffic_autohide_threshold">Inactivity threshold</string>
     <string name="network_traffic_enable_title">Enable</string>
 
-    <!-- captive portal - disable connectivity check -->
-    <string name="captive_portal_ignore_mode_title">Enable captive portal</string>
-    <string name="captive_portal_ignore_mode_summary">Enable connectivity check by enabling captive portal</string>
+    <!-- captive portal - connectivity check -->
+    <string name="captive_portal_mode_title">Enable captive portal</string>
+    <string name="captive_portal_mode_summary">Enable connectivity check via captive portal</string>
 
     <!-- statusbar brightness -->
     <string name="status_bar_brightness_control_title">Brightness control</string>
diff --git a/res/xml/more_settings.xml b/res/xml/more_settings.xml
index 1a6e77d..3569446 100644
--- a/res/xml/more_settings.xml
+++ b/res/xml/more_settings.xml
@@ -83,10 +83,11 @@
                 android:defaultValue="@*android:bool/config_unplugTurnsOnScreen" />
 
             <org.omnirom.omnilib.preference.GlobalSettingSwitchPreference
-                android:key="captive_portal_ignore_mode"
-                android:title="@string/captive_portal_ignore_mode_title"
-                android:summary="@string/captive_portal_ignore_mode_summary"
-                android:defaultValue="true" />
+                android:key="captive_portal_mode"
+                android:title="@string/captive_portal_mode_title"
+                android:summary="@string/captive_portal_mode_summary"
+                android:defaultValue="true"
+                android:persistent="true" />
 
         </PreferenceCategory>
 </PreferenceScreen>