]> git.mxchange.org Git - friendica-addons.git/blobdiff - posterous/posterous.php
Additional work for PR 3778
[friendica-addons.git] / posterous / posterous.php
index eda2a93a4582a7b142dea6b08dca62a83efae71e..76eaf77ad338eab352c4b78b9913b22cae632c6f 100755 (executable)
@@ -6,6 +6,7 @@
  * Version: 1.0
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
  * Author: Tony Baldwin <https://free-haven.org/u/tony>
+ * Status: Unsupported
  */
 
 function posterous_install() {
@@ -33,7 +34,7 @@ function posterous_jot_nets(&$a,&$b) {
     if(intval($pstr_post) == 1) {
         $pstr_defpost = get_pconfig(local_user(),'posterous','post_by_default');
         $selected = ((intval($pstr_defpost) == 1) ? ' checked="checked" ' : '');
-        $b .= '<div class="profile-jot-net"><input type="checkbox" name="posterous_enable"' . $selected . 'value="1" /> '
+        $b .= '<div class="profile-jot-net"><input type="checkbox" name="posterous_enable"' . $selected . ' value="1" /> '
             . t('Post to Posterous') . '</div>';
     }
 }
@@ -100,7 +101,7 @@ function posterous_settings(&$a,&$s) {
 
     /* provide a submit button */
 
-    $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="posterous-submit" name="posterous-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
+    $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="posterous-submit" name="posterous-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
 
 }