Quote:
Originally Posted by Dark Visor
The coders will. I'd like you to recall the coding style of vBulletin 2 and compare it with vBulletin 3. Which one is easier to modify? This:
PHP Code:
if ($a) {
while ($b = $c)
{
echo "!!!!!"; }
}
else { print "yo";
}
or this
PHP Code:
if ($a)
{
while ($b = $c)
{
echo "!!!!!";
}
}
else
{
print "yo";
}
|
Obviously the 2nd one, as it is easier to read.
However, as already said, you could just use a prettyprinter to transform Code #1.