]> git.mxchange.org Git - friendica-addons.git/blobdiff - randplace/randplace.php
Merge pull request #44 from tonybaldwin/master
[friendica-addons.git] / randplace / randplace.php
index bae8e7c690dc059ada01b8f0e49f461cbe2e2fb3..b70c02d94ea731eddbab415b22536229a8c1b7ab 100755 (executable)
@@ -1,17 +1,15 @@
 <?php
 /**
  * Name: Random place
- * Description: Sample Friendika plugin/addon. Set a random place when posting.
+ * Description: Sample Friendica plugin/addon. Set a random place when posting.
  * Version: 1.0
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
  * 
  * 
  * 
  *
- * Addons are registered with the system in the
- * .htconfig.php file.
- *
- * $a->config['system']['addon'] = 'plugin1,plugin2,etc.';
+ * Addons are registered with the system through the admin
+ * panel.
  *
  * When registration is detected, the system calls the plugin
  * name_install() function, located in 'addon/name/name.php',
@@ -136,7 +134,8 @@ function randplace_post_hook($a, &$item) {
 function randplace_settings_post($a,$post) {
        if(! local_user())
                return;
-       set_pconfig(local_user(),'randplace','enable',intval($_POST['randplace']));
+       if($_POST['randplace-submit'])
+               set_pconfig(local_user(),'randplace','enable',intval($_POST['randplace']));
 }
 
 
@@ -175,6 +174,6 @@ function randplace_settings(&$a,&$s) {
 
        /* provide a submit button */
 
-       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
+       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="randplace-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
 
 }