[00:13] *** marclaporte has quit IRC (Ping timeout: 252 seconds) [00:42] *** marclaporte has joined #tikiwiki [00:42] *** ChanServ sets mode: +o marclaporte [01:19] *** chealer has quit IRC (Ping timeout: 240 seconds) [01:21] *** rodrigo_sampaio has quit IRC (Ping timeout: 252 seconds) [01:50] *** goj|ghost has joined #tikiwiki [01:54] *** goj has quit IRC (Ping timeout: 248 seconds) [01:55] *** goj|ghost has quit IRC (Ping timeout: 255 seconds) [01:57] Recent Bug: Tracker item: #3905 - - Tiki7: custom modules with a space in the page name: problems - http://dev.tiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3905 [02:01] *** dabright has quit IRC (Quit: Leaving.) [02:07] *** goj|ghost has joined #tikiwiki [02:08] *** goj|ghost is now known as goj [02:11] *** Caarrie|away is now known as Caarrie|sleeping [02:28] *** dabright has joined #tikiwiki [02:46] I'm no doubt missing something simple, but when non-admin users are logged in to my site, their username at the top of the page is plain text (not a link). An admin's username, however, is a link to http://site.example.com/tiki/usern (where "n" is the user id). How can I get non-admin usernames to display as a link, too? [03:05] dabright : I dunno but that bugs me too [03:06] on *.tiki.org, I want links everywhere [03:08] tikiwiki: 03dabright * r34713 10/branches/proposals/6.x/templates/list_file_gallery_content.tpl: [bp/r34698,r34699][FIX] FILES plugin: Make list_file_gallery_content.tpl permission checking consistent with the plugin and the context menu template [03:33] dabright : I think it may be a setting when new users are created [03:35] marclaporte: The code seems to reference some preference, but I haven't found where that is. [03:35] what is pref name? [03:35] search in tiki-admin.php [03:37] In lib/smarty_tiki/modifier.userlink.php, $prefs['urlOnUsername'] [03:52] *** chealer has joined #tikiwiki [03:52] *** chealer has quit IRC (Changing host) [03:52] *** chealer has joined #tikiwiki [03:57] marclaporte: Nope, urlOnUsername is not it; that controls what the url is if you can get it to show up, not whether it shows up. [03:58] I have confidence you will find [04:03] marclaporte: Found it. If the user sets his/her "User information" preference to "Public", then the link shows up. Looks to me like the userlink smarty function was written to determine whether to show some other user's information (not the logged in user) and that using it in the context of the site header for the the user's own information is incorrect. [04:05] Is it fixable? [04:06] It should be a site-wide setting if usernames are clickable to see userinfo [04:06] Something like: always / user decides (default on) / user decides (default off) / never [04:07] Yes, that would be nice. I'm sure it is fixable; I'll make a note to look into it. No time right now. [04:16] *** mlpvolt has quit IRC (Remote host closed the connection) [04:16] *** dabright has quit IRC (Quit: Leaving.) [04:27] *** coaboa|afk has joined #tikiwiki [04:27] *** coaboa has quit IRC (Ping timeout: 255 seconds) [05:12] marclaporte: what do you mean by "custom modules with a space in the page name", what page? [05:15] tikiwiki: 03chealer * r34714 10/branches/7.x/ (lang/de/language.php templates/tiki-objectpermissions.tpl): [05:15] tikiwiki: [FIX] Change "Are you sure you want to effect all pages in this sub-structure?" to "Are you sure you want to affect all pages in this sub-structure?" [05:15] tikiwiki: I presume "effect" was some kind of typo. Native English speakers: please check [05:29] *** chealer has quit IRC (Ping timeout: 255 seconds) [06:49] *** chealer has joined #tikiwiki [06:49] *** chealer has quit IRC (Changing host) [06:49] *** chealer has joined #tikiwiki [06:57] tikiwiki: 03chealer * r34715 10/branches/7.x/lang/fr/language.php: French: review r32951 (TikiFestQuebec7) - Finish (completes r34618) [07:14] *** Bernard1 has joined #tikiwiki [07:54] *** chealer has quit IRC (Read error: Connection reset by peer) [08:19] *** Bernard2 has joined #tikiwiki [08:19] *** Bernard1 has quit IRC (Read error: Connection reset by peer) [08:47] *** redflo has joined #tikiwiki [08:53] *** lphuberdeau has quit IRC (Ping timeout: 240 seconds) [08:54] polom [09:06] hello. What is the variable for group ids? I have a block I want to show only for groups. Something like {if $group_id == 2}.. [09:20] Nils^: why id ? usually (check in some admin page code) we use the group name "Admin". If it is within a wiki page your have a Group plugin. [09:20] Bernard2: I'm not sure we talk about the same thing. Let me explain [09:21] I have a menu that should only show for the Group "Developers" and the admins. But its not a module but the very top menu (look and feel - Secondary site menu custom code) [09:21] where I have to use {menu id=42 css=y type=horiz} directly, without a module. [09:22] so I want an {if} around that to show it only for certain groups. [09:23] ok [09:23] I tried the menu permissions menu to override, but there are no permissions at all and it just says "you must select at least one feature". I don't know what this has to do with menus nor can I select any features anywhere. [09:23] which version are you using ? [09:23] 6.x ? [09:23] 6.3 [09:24] not only that, I think more important it says "No rows found" [09:24] in the menu permissions [09:26] I'm not that good with php, but i beleive this will be something like {if $Group == "xxx"}{else}No rows found{/if} [09:26] these are two different things. The "no rows found" is the error on the menu permission site [09:26] in my case i use {if $user == "admin"}{menu id=42 css=y type=horiz}{else}{menu id=43 css=y type=horiz}{/if} [09:27] php is clear to me, I just don't know the variable for groups [09:27] debug should help [09:27] tw internal debuger show there is $Group variable [09:28] i meant the tiki debugger console. [09:29] does it go with an id or string for the name? [09:31] can;t say no more as if i print the variable i got an empty string "$Group = [09:32] i'm no coder, sry i can't help more [09:32] yes, all my tests failed. [09:32] ok, thank you! [09:32] … hey ! [09:32] wait [09:33] may be you can use a wiki syntax with proper tags to use the {group()} module [09:33] something like: [09:34] * Bernard2 is looking for an exemple [09:37] something like {wiki}{literal}{group(xxxxx)}xxxx{group}{/literal}{/wiki} [09:37] not 100% sure about the syntax but the direction should be a starting point [09:38] I hope this will work in the top menu, its not a wiki page after all [09:38] do you know the docucmentation page for such things? [09:40] not really you'll have to look in tw doc. check for 2 things. The module/plugin {Group} (experiment it on a wiki page till you display what you want to proper group), second the syntax to insert it in look'n'feel. But i just see there is an exemple at the bottom of the page with the module google analytic… so it should work the same way [10:06] *** Bernard2 has quit IRC (Ping timeout: 258 seconds) [10:08] *** fabricius has joined #tikiwiki [10:08] polom [10:08] *** Nils^ has left [10:18] *** Bernard1 has joined #tikiwiki [10:22] *** Caarrie|sleeping is now known as Caarrie|away [10:38] *** chibaguy has joined #tikiwiki [10:38] *** ChanServ sets mode: +o chibaguy [10:38] polom [10:43] *** ricks99 has joined #tikiwiki [10:47] polom y'all [10:49] *** lphuberdeau has joined #tikiwiki [10:59] *** Bernard1 has quit IRC (Ping timeout: 240 seconds) [11:15] hi ricks99 [11:16] * chibaguy not paying attention [11:19] hiya chibaguy [11:20] I wonder why I'm not getting an empty line between paragraphs in Tiki 7. [11:21] Seems like I often have to fiddle with this. [11:21] Or maybe my stylesheet is wiping out the spacing (new theme). [11:24] Ah, seems to be the stylesheet. [11:25] *** marclaporte has quit IRC (Quit: See you later! http://marclaporte.com) [11:53] *** Bernard1 has joined #tikiwiki [12:02] *** fabricius has quit IRC (Quit: ChatZilla 0.9.86.1 [Firefox 3.6.17/20110422050619]) [12:02] *** Caarrie has joined #tikiwiki [12:03] *** Caarrie|away has quit IRC (Disconnected by services) [12:04] *** Caarrie is now known as Caarrie|away [12:15] *** emijrp has joined #tikiwiki [12:37] *** dabright has joined #tikiwiki [12:39] *** SJ-Jay has joined #tikiwiki [12:40] Hey guy's.. have a question regarding ldap and Active directory! [12:43] Uh oh, I don't know if any ldap experts are around. [12:44] damn.. we are building a new company intranet based on tiki wiki.. and would like to get more user informations from our Active directory like mobile number, description, maybe picture if possible.. [12:46] If you don't get answers here, I suggest subscribing to the developer mailing list. [12:46] help is a little hit and miss here, depending on if people are around or not. [12:46] there is also an ldap-specific support forum [12:47] might want to check there to see if your issue has been discussed already [12:47] where do i find this forum? [12:47] tiki.org/forums [12:49] Thanks.. will have a look at it right away :) [12:50] good luck [12:53] *** gillesMM has quit IRC (Ping timeout: 246 seconds) [12:53] ok another question then.. [12:53] i am trying to use trackers with the company directory [12:54] would like the tracker to add all users from specific groups to the company directory... [13:05] *** radek82 has joined #tikiwiki [13:08] *** dabright has quit IRC (Quit: Leaving.) [13:33] *** nkoth has joined #tikiwiki [13:38] *** Bernard1 has quit IRC (Quit: Leaving.) [13:43] *** rodrigo_sampaio has joined #tikiwiki [14:13] *** Bernard1 has joined #tikiwiki [14:14] *** redflo has quit IRC (Ping timeout: 248 seconds) [14:15] New Forum Posts: Customized the article plugin of the WYSIWYG editor toolbar - http://tiki.org/tiki-view_forum_thread.php?forumId=3&comments_parentId=41384 [14:40] *** SJ-Jay has quit IRC () [14:50] *** Bernard1 has quit IRC (Ping timeout: 255 seconds) [14:58] *** changi has quit IRC (Ping timeout: 276 seconds) [15:04] *** changi has joined #tikiwiki [15:06] *** DarkCalf has joined #tikiwiki [15:15] *** WhiteCalf has quit IRC (Quit: Leaving) [15:15] *** DarkCalf is now known as PrezKennedy [15:16] *** PrezKennedy has left "Leaving" [15:18] *** DarkCalf has joined #tikiwiki [15:34] *** chibaguy has quit IRC (Read error: Connection reset by peer) [15:48] *** manna has joined #tikiwiki [15:48] oh boy. where am I? [15:49] is this a plce to get tech support? [15:49] help! [15:50] >help! [15:50] 'help' could be way of getting some useful (or not so useful but kind of funny) information from me. By me I mean Sug4r, the IRC bot. You can give me commands like >whatis foo to get some facts from my factoids database about foo , >list alias to get list of command aliases i understand, >help alias about to get some help about alias called about and its parameters or /msg Sug4r help someothercommand (1 more message) [15:50] just ask - if somebody can answer he will [15:51] I am setting up a new tiki site. I tried to get a blog started and when I go to look at the blog I get a 404 error page. [15:51] what do I need to do to correct that? [15:51] 4040 for which url/ [15:51] perhaps ypur ftp was nopt complete? [15:52] 404 sorry [15:52] I am clicking on the blog link in the "list blogs" admin section [15:53] It is hte first blog created (only blog so far) and checked as hte home blog [15:54] did you ftp the site? [15:55] I don't know what that means. I did not upload it from another computer. It is hosted on a hostgator server [15:56] there may be acheck box I overlooked during set up? [15:56] I mean, configuration [15:58] *** Bernard1 has joined #tikiwiki [15:58] what is the url that creates the 404 error? [15:59] brb [16:00] http://feelitreallyworks.terrificideas.net/blog1 [16:00] I have a page that appears as blank page in wysiwyg editor. Any hint to debug that? [16:01] this one is working http://feelitreallyworks.terrificideas.net/tiki-view_blog.php?blogId=1 [16:01] so desactivate teh sefurl (search engine friendly url ) in admin->features [16:02] or create the .htaccess [16:02] ok...brb [16:04] manna: http://doc.tiki.org/Clean+URLs [16:04] that did it! thank you thank you! [16:05] checking out hte link. thank you again. [16:06] *** _qP has joined #tikiwiki [16:08] *** radek82 has quit IRC (Ping timeout: 248 seconds) [16:12] *** jonnyb has joined #tikiwiki [16:31] *** chealer has joined #tikiwiki [16:31] *** chealer has quit IRC (Changing host) [16:31] *** chealer has joined #tikiwiki [16:31] polom [16:32] anyone tried the category plugin in 7.x? [16:35] hi jonny [16:36] hi Bernard1 [16:42] *** RobertPlummer has joined #tikiwiki [16:42] polom all [16:42] lphuberdeau: I'm in the middle of adding trackers to sheets and wonder how I should use objects to accomplish this. What do you think? [16:42] hi jonnyb, RobertPlummer & Bernard1 [16:42] hi RobertPlummer [16:42] & ricks99 [16:43] hi ricks99 [16:43] hi jonnyb [16:43] I mean polom [16:43] :) [16:43] I feel like I've been away from the Tiki community for awial. [16:44] jonnyb: do you have any pointers on using the objects lib with linking trackers to sheets? [16:44] um, sounds like a good idea? :) [16:44] I can see past code, but that isn't always best practive. [16:45] practice. [16:45] lol [16:45] Who has used the objects lib in the past? just lphuberdeau ? [16:46] possibly - i haven't ever done much with it [16:47] jonnyb: Is it what you'd use? [16:47] maybe have a look at attributes as well? [16:50] hey rick… (sry kids bedtime schedules on the way !) ;) [16:52] jonnyb: I thought they were kinda one in the same, looks like I was way off. [16:52] Looks more like relations lib is what I want. [16:52] i think they're related [17:03] hello guys [17:03] hi sylvieg - have you looked at the category plugin recently? seems to have gone quite weird... [17:04] jonnyb: is there some cleaning after modifying the source in wysiwyg , going back to the wysiwyg screen [17:04] category can be me - ... [17:04] which version [17:04] 7.x [17:05] need to do some fixes in 6.x so was checking in 7.x first - wish i hadn't :) [17:05] yes, there's an ajax post back to parse plugins etc when switching from source in wysiwyg [17:06] I have plenty of {img} .. so it can be the problem? [17:06] could be - you get an empty page? [17:07] *** gillesMM has joined #tikiwiki [17:07] *** redflo has joined #tikiwiki [17:07] yes [17:07] there are some precarious preg_replaces in $editlib->parseToWysiwyg() [17:08] what is the use of your CATEGORY .. therr are plenty of uses [17:08] i fixed one a while ago that was getting a preg_error about recursion on some pages [17:09] just small lists of wiki pages and/or articles [17:09] now (in 7.x) they all have "Other objects of the category can be reached by the following links:" in front of them... [17:10] and if you have multiple categs it lists them all, not maxRecords now (in 6.x it usually lists none of them) [17:11] * changi will upgrade dev.to in 1 hour [17:11] hi changi - thanks [17:12] jonnyb: no problem [17:12] jonnyb: sorry for RC1, was not online [17:13] jonnyb: I have so same wierd .. active option.. [17:13] no probs, i muddled through ok i think [17:14] sylvieg: seem to be several "###trebly:B01229" comments around there... [17:14] commit 32152? [17:15] http://tikiwiki.svn.sourceforge.net/tikiwiki/?rev=32152&view=rev [17:15] yup [17:16] strange commit [17:16] seems chibaguy rolled back some of it [17:16] * ricks99 wonders if someone will be able to provide some stats for 7.0 (# of committers, # of code commits, etc) [17:16] dev list email on 29 jan [17:16] jonnyb: I think more rollbacks are needed [17:17] me too... [17:17] think it needs doing now for 7.0 too... [17:18] I do not udnerstand why he changed categobjects_title.tpl [17:18] seems to be a new file [17:20] +1 to delete to call to a tpl in the lib [17:22] it seems to be fetching categobjects.tpl also (since 2004 at least) [17:22] think i'll leave the title one in but empty the file so it can be customised easily [17:22] but the title can be probably fetch outside [17:23] * sylvieg wondering where it is needed [17:23] i think it's also used to list same categ objects on pages [17:23] but the presentation is all messed up with the data access bit (as is often the case here! ;) ) [17:24] .. it was clean in 6.x last time I tesetd [17:24] except when listing multiple categs with a low maxRecords [17:25] but output is ok, yes - clean [17:31] Anyone aware of the #goc webex demo for tiki currently taking place? [17:32] polom [17:32] ricks99: no idea [17:33] saw it mentiond on twitter [17:33] just wondering if any tiki admins were behind it [17:34] *** manna has quit IRC (Ping timeout: 252 seconds) [17:42] tikiwiki: 03jonnybradley * r34716 10/branches/7.x/ (3 files in 2 dirs): [FIX] rollback r32152 which adversely affected the output of wikiplugin_category which also uses this function. This restores 6.x behaviour. [17:51] ricks99: regarding doc.tiki.org, why does the Switch Lang module have its header in another module? [17:51] jonnyb: switching from 6 to 6 proposal fixed my whaite page in wysiwyg - You fixed something - thx [17:52] yay! thanks :) [17:52] purely asesthtic reasons. i turned used notitle=y (was too big and used 2 rows) [17:52] jonnyb: aaah. that's good [17:52] feel free to change if u prefer [17:52] * ricks99 was trying to "de-clutter" the page [17:57] ricks99: I see. the module says "Site Language: English" here [17:58] chealer: odd, i thought i had turned the module title OFF [18:00] ricks99: sorry I meant my install has that title, which does spread on 2 lines [18:00] still there sylvieg? i was trying to get list_category_objects to do multiple categories with an AND and it looks like it's some of yours (abandoned 2006) - did you ever get it working? [18:00] which *is* big [18:00] @chealer: ah... not for English. but try soe of the other languages and you'll see what i mean [18:01] like i said, it was a personal preference. if youwant, feel free to change back [18:01] ricks99: what? I do see "Site Language: English" as title on my local 7.x [18:01] jonnyb: I do not remember - do you have the cimmit number? [18:01] 6598 [18:02] jonnyb: I believe http://sourceforge.net/apps/trac/tikiwiki/changeset/16614/trunk/templates/modules/mod-switch_lang.tpl is causing an international incident. could you comment on the necessity of having the current language in the module title? without it the title fits on a single line. [18:02] * sylvieg thinks abotu unit test... [18:03] looks like some funky inner join way of getting multiple category objects on one line [18:03] * sylvieg does not old commits in her mailing list - too old [18:04] no chealer, i've often thought of removing it [18:04] 6598 is a merge [18:04] @chealer: Sorry, but I don't undestand? Are you talking about doc.t.o., or a local install on your PC? [18:05] just found that... [18:06] ancient code! :) [18:06] basically the $join var never gets queried... so presumably a regression later on - i'll just see if i can fix it :) [18:07] ricks99: I was talking about doc but on doc the title is not shown so I looked at my local install as reference. [18:07] *** rodrigo_sampaio1 has joined #tikiwiki [18:08] * changi dev under upgrade to 7.x [18:09] BTW: Marc is giving the #goc demo [18:09] jonnyb: Rick hid the title on doc.tiki.org because it was too big. would you oppose if I remove the language hoping to solve that? [18:09] *** rodrigo_sampaio has quit IRC (Ping timeout: 276 seconds) [18:09] hi changi [18:09] go for it - i didn't think it was my idea [18:10] +1 [18:10] alternatively you can set the title of the module no? [18:10] jonnyb: hum, indeed [18:10] no, kil it - the module itself show which lang you're in [18:10] true. but i was trying to visually keep the lang selection with the top part (in doc.t.o [18:11] yeah, it is redundant. I'll remove it [18:11] de-clutter is good (thanks chealer & ricks99) [18:11] it is fine. just personal preference i think [18:12] * ricks99 just thinks the h3 for module box is HUGE [18:13] * ricks99 needs to work on the keyword module next [18:13] changi: when you upgrade dev, how hard would it be to keep a copy of it under Tiki 6 for regression identification? "legacy.dev.tiki.org" [18:14] sorry to not be around to help out with dev - i'm off out in a few mins [18:14] hopefully the page of notes i made from the devtest one will help - will be back in a few hours & will check in then [18:18] chealer: not so hard [18:18] id depends if you want to have a dns record or not [18:19] with an old (locked?) database, or a shared one? [18:19] an old one [18:20] i'm unable to maintain shared one because of the db schema [18:20] changi: if you think it can be done in less than an hour, I think it would be worth it [18:20] chealer: ok [18:21] changi: as for the DNS record - well, it is not necessary. though isn't adding a DNS record supposed to be easy? [18:22] chealer: need to found the credential :) [18:22] s/found/find [18:23] * changi finish updateing dev [18:25] changi: I see :-S [18:26] sounds like 2003 [18:29] jonnyb: unfortunately a custom title wouldn't be translated [18:35] back later, bye for now [18:35] *** jonnyb has quit IRC (Quit: I am going outside... I may be some time...) [18:36] tikiwiki: 03chealer * r34717 10/trunk/ (2 files in 2 dirs): [18:36] tikiwiki: [MOD] Switch Language module: remove language from module title, preventing the module title from spreading on 2 lines. partially reverts r16614. [18:36] tikiwiki: prefix parameter is now ignored. [18:36] tikiwiki: thanks Rick Sapir [18:36] :-) [18:37] ricks99: should I use a custom title for now? [18:38] sure, but i still think (overall) the h3 module tille is much too large [18:38] ricks99: for this specific module or all modules? [18:39] all, in fivealive theme, at least.a [18:39] again, just my $0.02 take it for what it is worth [18:40] *** rodrigo_sampaio1 has quit IRC (Ping timeout: 248 seconds) [18:40] ricks99: I have little judgment on that. it could be discussed with Gary [18:43] easy enough to override with css. no big deal [18:45] ricks99: done [18:47] it just looks HUGE to me. maybe just my eyes [18:50] at the moment for me modules are not well distributed between columns [18:51] too much left [18:56] Is there a way to hide the admin contribution to a page ? (some page require the admin to correct them BUT he is not really part of the contributors, make sense to hide him from the contributors list) [19:01] *** xen216 has joined #tikiwiki [19:07] *** kwizard has joined #tikiwiki [19:22] chealer: legacydev is online [19:39] thank you changi! [19:47] chealer: you're welcome [19:48] database is from tomorow [19:56] *** ricks99 has quit IRC (Quit: Get the best-selling Tiki books (paperback and ebook) at http://www.lulu.com/spotlight/ricks99) [19:58] New Forum Posts: Goto/Jump directly to a wikipage - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=41387 [20:11] changi: from tomorrow - that's good. could you put next year's then? :-) [20:31] tikiwiki: 03robertplummer * r34718 10/trunk/ (4 files in 3 dirs): [NEW] Sheet feature that links sheets with trackers through relate objects. This feature is buggy and will need some changes on jQuery.sheet to work right, but the hardest part is over. [20:40] *** redflo has quit IRC (Ping timeout: 260 seconds) [20:44] *** RobertPlummer has quit IRC (Quit: Page closed) [20:44] *** redflo has joined #tikiwiki [21:05] *** kwizard has quit IRC (Ping timeout: 276 seconds) [21:06] *** kwizard has joined #tikiwiki [21:10] *** kwizard has quit IRC (Ping timeout: 240 seconds) [21:13] *** Bernard1 has quit IRC (Quit: Leaving.) [21:37] *** rodrigo_sampaio has joined #tikiwiki [21:51] *** qp_ has joined #tikiwiki [21:51] *** emijrp has quit IRC (Quit: Ex-Chat) [21:54] *** _qP has quit IRC (Ping timeout: 276 seconds) [21:54] *** nkoth has quit IRC (Quit: nkoth) [21:59] *** qp_ has quit IRC (Quit: Leaving) [22:15] *** nkoth has joined #tikiwiki [22:33] *** redflo has quit IRC (Ping timeout: 260 seconds) [22:37] *** redflo has joined #tikiwiki [22:40] *** rodrigo_sampaio has quit IRC (Ping timeout: 248 seconds) [22:54] *** Tiki|bot has quit IRC (Ping timeout: 240 seconds) [22:57] *** Tiki|bot has joined #tikiwiki [23:04] *** Tiki|bot has quit IRC (Ping timeout: 252 seconds) [23:05] *** Tiki|bot has joined #tikiwiki [23:14] *** Tiki|bot has quit IRC (Ping timeout: 252 seconds) [23:19] *** Tiki|bot has joined #tikiwiki [23:33] *** fabricius has joined #tikiwiki [23:33] Polom [23:36] I have a question regarding to TABs: [23:36] Welcome to the official Tiki Wiki CMS Groupware channel. Please ask your question directly. Don't ask to ask. Someone will reply if and when they know the answer. Welcome again and please stay a while. Thank you! [23:36] Welcome to the official Tiki Wiki CMS Groupware channel. Please ask your question directly. Don't ask to ask. Someone will reply if and when they know the answer. Welcome again and please stay a while. Thank you! [23:36] On doc.t.o on the HomePage the {TAB()}PlugIn is used and I do use it on one of my sites (an Intranetproject) [23:36] => on doc.t.o there is no button to switch off tabs => on my site there is the button => my theme is based on fivealive with only few changes [23:36] ==> I like not to use the button, not to confuse my users - anybody know how to switch off or how to deactivate? [23:38] Hi Tiki|bot - Ididnask to ask, I just phrased my question a bit circumstantial [23:39] :-D [23:40] If I remember right, luciash, you understand quite well to talk with the bot - isn't it? [23:53] *** Loggar has quit IRC (Ping timeout: 276 seconds)