The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
According to this link...
https://www.vbulletin.com/docs/html/codestandards_gpc ...it states that "Do not use $_GET / $_POST / $_REQUEST etc. variables in templates." But I need to use it in the templates for something I need to achieve. Why do they say don't use $_GET etc? Is it a security risk or something? Jon |
#2
|
||||
|
||||
![]()
You dont ever need to use them in a template.
They are just variables, so you can easily use something else. |
#3
|
|||
|
|||
![]()
In that case, how do I check for being on register.php?do=addmember then? I need to check to see if addmember is there.
|
#4
|
|||
|
|||
![]()
In a PM discussion I mentioned to Jon that I thought it was because those variables haven't been "cleaned" and so they could contain anything and wouldn't be safe to include directly in the output. I'm sure that part's true. But I thought they would be OK to use in a condition (for instance in the headinclude template when the 'do' variable isn't in $vbulletin->GPC yet). Otherwise you'd need a plugin to create another variable. But I wasn't sure so Jon wisely decided to ask if anyone else knows.
|
#5
|
|||
|
|||
![]()
Lets imagine the variable is 'dirty'. If you had this...
Code:
<if condition="$_GET['do']=='register'"> run code </if> Is this right? |
#6
|
||||
|
||||
![]()
You are technically correct, thats not the point.
![]() The standards are designed to prevent you accidently forgetting this. If you never use them in templates, there can never be an issue. |
#7
|
|||
|
|||
![]()
It also states "The only direct access to these variables is with $_POST['do'] and $_GET['do']"
For the reason why it shouldn't be used in templates, I, personally, believe is because you should be doing those checks in the PHP code. |
#8
|
|||
|
|||
![]()
Paul makes a good point, I didn't notice that that was from the coding standards. So it's not claiming that there's necessarily any problem, just that the vb coding standards say not to do it.
OK, but here's a sorta related question: if someone here asks how they can do something, and they could do it by adding a few lines to a template but it involves using $_GET['do'] in a condition, should they be told to write a plugin because it's the "right" way to do it? |
#9
|
|||
|
|||
![]() Quote:
It all comes down to the purpose and hassle. I don't recommend editing the default register template, but instead finding the do branch in a plugin then calling your own template: That way it's easier to manage and upgrade. But if he simply wants to add a few lines and the whole situation would indeed be a lot easier to just do it in the template then by all means do it even if vB coding standards says not to. If he was making a mod to be released to vB.org then I'd say he should do it the right way. |
#10
|
|||
|
|||
![]() Quote:
That's pretty much my feeling exactly, but I was wondering what other people thought about it. I think when people are making small mods for themselves it's not very important, so I usually go for the easiest solutions. Anyway, sorry for hijacking Jon's thread. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|