';
+ /* setting the channel(s) to auto connect */
+ $autochans = get_config('irc','autochans');
+ if($autochans)
+ $channels = $autochans;
+ else
+ $channels = ((x($_GET,'channels')) ? $_GET['channels'] : 'friendica');
-
-
-
-$channels = ((x($_GET,'channels')) ? $_GET['channels'] : 'friendica');
-
-/* add the chatroom frame and some html
- * by altering the "channels=friendica" part of the URL, you can add/remove channels.
- * At free-haven.org, I have "?channels=friendica,free-haven", for instance, to open #friendica and #free-haven
- */
+/* add the chatroom frame and some html */
$o .= <<< EOT
diff --git a/planets.tgz b/planets.tgz
index 1be40b9d..2ce9788f 100644
Binary files a/planets.tgz and b/planets.tgz differ
diff --git a/planets/planets.php b/planets/planets.php
index 1c6ed43b..0df91d7c 100755
--- a/planets/planets.php
+++ b/planets/planets.php
@@ -4,22 +4,7 @@
* Description: Sample Friendica plugin/addon. Set a random planet from the Emprire when posting.
* Version: 1.0
* Author: Mike Macgirvin
- * Author: Darth Baldwin
- *
- *
- *
- *
- * Addons are registered with the system in the
- * .htconfig.php file.
- *
- * $a->config['system']['addon'] = 'plugin1,plugin2,etc.';
- *
- * When registration is detected, the system calls the plugin
- * name_install() function, located in 'addon/name/name.php',
- * where 'name' is the name of the addon.
- * If the addon is removed from the configuration list, the
- * system will call the name_uninstall() function.
- *
+ * Author: Tony Baldwin
*/
@@ -108,14 +93,7 @@ function planets_post_hook($a, &$item) {
*/
$planets = array('Alderaan','Tatooine','Dagoba','Polis Massa','Coruscant','Hoth','Endor','Kamino','Rattatak','Mustafar','Iego','Geonosis','Felucia','Dantooine','Ansion','Artaru','Bespin','Boz Pity','Cato Neimoidia','Christophsis','Kashyyk','Kessel','Malastare','Mygeeto','Nar Shaddaa','Ord Mantell','Saleucami','Subterrel','Death Star','Teth','Tund','Utapau','Yavin');
-# $zones = timezone_identifiers_list();
-# foreach($zones as $zone) {
-# if((strpos($zone,'/')) && (! stristr($zone,'US/')) && (! stristr($zone,'Etc/')))
-# $planets[] = str_replace('_', ' ',substr($zone,strpos($zone,'/') + 1));
-# }
-#
-# if(! count($planets))
-# return;
+
$planet = array_rand($planets,1);
$item['location'] = $planets[$planet];