Name | Type |
---|---|
Send notification email to forum moderator when a user posts a message which is queued pending moderation | tracker item |
tiki-list_quizzes.tpl calls for non-existing icon | tracker item |
_getGalleryChildrenIds{List,Tree} does not work correctly in php 5.2.x | tracker item |
_htaccess should know which version of Tiki it is for
Good: Since Tiki4, in tiki-admin_include_sefurl.php, Tiki detects if .htaccess is there and if contains tiki-index.php?page=$1 But: If Tiki is upgraded, by installing over, there may be issues because Tiki is still using the old .htaccess without informing tiki admin Proposal: Have Tiki version number in _htaccess (and thus updated as part of the release procedure) Test on this, and inform users when they forgot to upgrade their .htaccess file. |
tracker item |
'View Articles' - page name not translated | tracker item |
"Buttons" in "dropup" should be btn-link only, not btn-default | tracker item |
"No such attachment on this page" appearing after change of behavior of PluginFile
Between Tiki2 and Tiki3, behavior of PlginFile changed, and is causing "No such attachment on this page" errors http://www.google.com/search?hl=en&q=%22No+such+attachment+on+this+page%22+site%3ATikiwiki.org&aq=f&oq=&aqi= |
tracker item |
"Send an email to the user in order to allow him to validate his account" option hidden | tracker item |
{poll } Does Not Work
After setting up and creating a poll with ID = 1 __Update:__ I was following the examples on the doc site for how to embed a poll. These examples typically are in the following formats. The examples throughout the docs should probably be updated to reflect the what actually works (see solution section below). I am a brand new user and am finding the documentation regarding the embedding of dynamic variables to be wrong in many cases. When inserting any of the following: {CODE()} {poll} {CODE} ''generates junk code in the rendered page'' {CODE()} {poll id=1} {CODE} ''generates junk code in the rendered page'' {CODE()} {pollId=1} {CODE} ''simply outputs pollid=1 in the rendered page'' {CODE()} {poll pollID=1} {CODE} ''ALSO generates junk code! So, it's case sensitive?'' ''Details:'' I have tried several versions (just in case case sensitivity was a problem). This has also been reproduced with and without jQuery turned on. I have insured that the Polls option is available in the Text Field as well. Currently operating as an admin user with all capabilities turned on. The "junk"is essentially html. Turning "Allow HTML" or "Try to covert HTML to wiki" has no effect. I __can__ get other dynamic content to work. |
tracker item |
/templates/modules/mod-login_box.tpl broken translation | tracker item |
<HR> appears on print page | tracker item |
<HR> appears on print page | tracker item |
12.x fullcalendar: Can't click on event anymore to see full record and use clicable links | tracker item |
12.x regression: plugin trackerlist - filterfield filtervalue | tracker item |
12.x: Countries list is not alphabetically sorted any more | tracker item |
Renaming a group doesn't update the name in the corresponding group watches | tracker item |
12.x: profile data defined for item link field do not get stored in local tiki where profile was applied | tracker item |
12.x: Send email to let user validate account doesn't send email if user previously created | tracker item |
12.x: content of tracker comments tab is not shown! (in dev.t.o) | tracker item |
14x Inter-User Messages: 'Reply to all' gets the wrong sender of the message to be replied | tracker item |
13.x dev.t.o bug tracker: missing category at submit time didn't take the user up to the source of the issue, and no message at the bottom | tracker item |
13.x: TrackerCalendar info in the popup box when hovering on items shows content without parsing (ok in 12.x) | tracker item |
14.x: tracker items can't be inserted: 'No template available for n - view' | tracker item |
14.x: TrackerCalendar displays all items of one day overlayed at the top of the column | tracker item |
15.x: Allow running console.php to apply profiles from behind a proxy (to run new R script to check errors when testing the application on all Profiles on several tiki branches) | tracker item |
The problem is (IMO):
#$allIds is given as reference
#foreach go through the array (with an internal iterator)
#in next recursion step an other foreach is called (but with the same $allIds-object)
#the iterator reaches the end of the array and the loop goes a recursion step back
#the "outer" forach continues, but the iterator of $allIds is at the end of the array
#no other item is checked, if one of the inner recursion steps reach the end of the array