[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-06-03T19:34:36-07:00 https://integramod.com/forum/feed.php?f=17&t=995 2006-06-03T19:34:36-07:00 2006-06-03T19:34:36-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8366#p8366 <![CDATA[[Problem?] Categories...]]>
One other standard, which has become lax, is the use of capitalisation for language variable i.e. people are using mixed case again this does not made the debugging any simplerà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

Mike

Statistics: Posted Author: Michaelo — Sat Jun 03, 2006 7:34 pm


]]>
2006-06-03T13:49:10-07:00 2006-06-03T13:49:10-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8356#p8356 <![CDATA[[Problem?] Categories...]]> Statistics: Posted Author: phDaemon — Sat Jun 03, 2006 1:49 pm


]]>
2006-06-02T14:48:19-07:00 2006-06-02T14:48:19-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8293#p8293 <![CDATA[Re: [Problem?] Categories...]]>
I have gone all the way back to 1.3.2 and the same code exists in all versionsà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦ This is not a bug! Read onà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

Languages]
French: $lang['General'] = 'Administration GÃÂÂ ©nÃÂÂ ©rale';
English: $lang['General'] = 'General Admin';

[color=green]Code]
if (isset($lang[$res])) $res = $lang[$res];

It can be seen from the above that certain words have been assigned to admin menu headers being common to all languages these have in very real sense become restricted or reserved.

Now if I disable the function to allow the user to use words that appear in the lang_admin file I screw up the intended language replace functionalityà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

You may have noticed quite a few of the phpbb default language items use this_word_is, the underscore help to avoid this problemà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

[color=darkblue]So in support of calling this a bugà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦ Emphasising with _ (underscore) should have been done at the outset and the problem would have been eliminated but as this happened some time ago changing it now would require a lot of work and may not be worth the hassle when all the user has to do is use another nameà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦


I give upà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦ whatever it is it isnt a bug :)

Statistics: Posted Author: Michaelo — Fri Jun 02, 2006 2:48 pm


]]>
2006-06-02T06:21:56-07:00 2006-06-02T06:21:56-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8268#p8268 <![CDATA[[Problem?] Categories...]]>
 if (isset($lang[$res])) $res = $lang[$res];  


Why not put that code somewhere else where it should not affect the entire CH modification?

also the link...

Sorry, but only users granted special access can read topics in this forum.

I still dont know exactly what purpose the code provides because the whole thing about lang is that anyone can change it....unless you also want the name of the forums to change depending on lang? then again, we already know that doesnt work...

Just my two cents.

Statistics: Posted Author: phDaemon — Fri Jun 02, 2006 6:21 am


]]>
2006-06-02T03:35:31-07:00 2006-06-02T03:35:31-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8245#p8245 <![CDATA[[Problem?] Categories...]]> Statistics: Posted Author: tmotley — Fri Jun 02, 2006 3:35 am


]]>
2006-06-02T02:52:54-07:00 2006-06-02T02:52:54-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8243#p8243 <![CDATA[Re: [NOT A BUG] Categories...]]> Statistics: Posted Author: Michaelo — Fri Jun 02, 2006 2:52 am


]]>
2006-06-01T18:45:37-07:00 2006-06-01T18:45:37-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8231#p8231 <![CDATA[Re: [BUG]Categories...]]> A small dilemma aka catch22à¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

If I allow the setting of categories/forums name to what are in effect restricted names I will have to disable language name lookup for admin forumsà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦ so for now, to allow such names as General, or numbered forums as 1,2,3,ect. Follow the next edit.

 Open])) $res = $lang[$res];And replace [url=with]with://if[/url] (isset($lang[$res])) $res = $lang[$res];  


This will remove the lookup for matching words but I dont know if it will have any side effectsà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

A simpler solution would be to use names such as:
General Forum
Forum 1, Forum 2 etcà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

I am not convinced everyone would support this action so for now I won't add it to beta... On the other hand the aforementioned function may be of little use... thoughtsà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦ <!-- s]

[color=red]This is not a bug its more a trade-offà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

Mike

Statistics: Posted Author: Michaelo — Thu Jun 01, 2006 6:45 pm


]]>
2006-06-01T16:59:27-07:00 2006-06-01T16:59:27-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8220#p8220 <![CDATA[[Problem?] Categories...]]> Just a thought :D

Statistics: Posted Author: Michaelo — Thu Jun 01, 2006 4:59 pm


]]>
2006-06-01T06:29:30-07:00 2006-06-01T06:29:30-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8161#p8161 <![CDATA[[Problem?] Categories...]]>

Statistics: Posted Author: phDaemon — Thu Jun 01, 2006 6:29 am


]]>
2006-06-01T06:12:19-07:00 2006-06-01T06:12:19-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8157#p8157 <![CDATA[[Problem?] Categories...]]>
A

Statistics: Posted Author: Adrian Rea — Thu Jun 01, 2006 6:12 am


]]>
2006-06-01T06:07:26-07:00 2006-06-01T06:07:26-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8155#p8155 <![CDATA[[Problem?] Categories...]]>
this only happens in the admin panel...in other words, the lang keys are localized to the ACP but not to a certain module itself.

Statistics: Posted Author: phDaemon — Thu Jun 01, 2006 6:07 am


]]>
2006-06-01T03:55:24-07:00 2006-06-01T03:55:24-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8135#p8135 <![CDATA[Re: [BUG]Categories...]]> restricted when it comes to naming forums/categories i.e. is has become a system language variableà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

Note Numbers are also restricted so use (in post above) 12_ and set up a language variable for 12_ = 12

A function checks to see if a forum/category name is a language variable and if so it replaces it with the corresponding language value. As General is already a system language variable it cannot be reusedà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

To over come this or any other naming problem simple name the Category or Forum Name_ (note the trailing _)
For example] [color=brown]Forum Name = General_
Place a language value of $lang['General_'] = 'General'; in the lang_admin.php file.


This way other languages can assign a value for generalà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

Statistics: Posted Author: Michaelo — Thu Jun 01, 2006 3:55 am


]]>
2006-05-31T16:38:24-07:00 2006-05-31T16:38:24-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8101#p8101 <![CDATA[[Problem?] Categories...]]>
pretty good lol
<img>

seems something aught to be done about it afterall

Statistics: Posted Author: phDaemon — Wed May 31, 2006 4:38 pm


]]>
2006-05-31T15:48:46-07:00 2006-05-31T15:48:46-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8089#p8089 <![CDATA[[Problem?] Categories...]]> Statistics: Posted Author: tmotley — Wed May 31, 2006 3:48 pm


]]>
2006-05-31T15:08:08-07:00 2006-05-31T15:08:08-07:00 https://integramod.com/forum/viewtopic.php?t=995&p=8083#p8083 <![CDATA[[Problem?] Categories...]]>
A

Statistics: Posted Author: Adrian Rea — Wed May 31, 2006 3:08 pm


]]>