[2.0.13] phpBB 2.0.13 to 2.0.14 Code Changes

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in here. No new MODs will be accepted into the MOD Database for phpBB2
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.
Post Reply

Rating:

Excellent!
81
71%
Very Good
12
11%
Good
10
9%
Fair
2
2%
Poor
9
8%
 
Total votes: 114

Extensions Robot
Extensions Robot
Extensions Robot
Posts: 29232
Joined: Sat Aug 16, 2003 7:36 am

[2.0.13] phpBB 2.0.13 to 2.0.14 Code Changes

Post by Extensions Robot »

MOD Name: phpBB 2.0.13 to 2.0.14 Code Changes
Author: Acyd Burn
MOD Description: Code Changes from phpBB 2.0.13 to 2.0.14 in three formats (text/mod, html, bbcode prepared for posting the changes on phpBB forums).



MOD Version: 1.0.0

Download File: phpbb_2013_to_2014.zip
mods overview page: View
File Size: 18829 Bytes

Security Score: 0
Last edited by Extensions Robot on Mon Apr 30, 2007 12:26 am, edited 1 time in total.
(this is a non-active account manager for the phpBB Extension Customisations Team)
Xore
Former Team Member
Posts: 2594
Joined: Wed Apr 16, 2003 7:42 pm
Location: the wastelands between insomnia and clairvoyance
Contact:

Post by Xore »

MOD Validated/Released

Notes:
This is the code changes from phpBB 2.0.13 to 2.0.14 in easy to read formats. Upgrade your board ASAP!
Camels in the Mist
<noise type="random" source="camel" />
Cash Mod
chadsmith
Registered User
Posts: 261
Joined: Sat Jul 13, 2002 4:54 pm
Location: 67212
Contact:

Post by chadsmith »

Yep I figured you'd get this up right as I finish patching. :lol:
Probably the toughest time in anyone's life is when you have to murder a loved one because they're the devil.
DiSpy
Registered User
Posts: 68
Joined: Sun Jul 11, 2004 9:18 pm
Location: South Florida!
Contact:

Post by DiSpy »

Yay!! 8)

THANK YOU! :D

-DiSpy
sonyboy
Registered User
Posts: 2980
Joined: Thu Oct 07, 2004 2:10 am

Post by sonyboy »

Hey, thanks, but the only database change is the version No. right?
User avatar
onigumo
Registered User
Posts: 1755
Joined: Fri Oct 31, 2003 2:32 am
Contact:

Post by onigumo »

For a reason by which I believe is not important to reveal in this case, I removed the file which requires the following code changes:

Code: Select all

# 
#-----[ OPEN ]--------------------------------------------- 
# 
admin/admin_styles.php

#
#-----[ FIND ]---------------------------------------------
# Line 78
			include($phpbb_root_path. "templates/" . $install_to . "/theme_info.cfg");

#
#-----[ REPLACE WITH ]---------------------------------------------
# 
			include($phpbb_root_path. "templates/" . basename($install_to) . "/theme_info.cfg");

#
#-----[ FIND ]---------------------------------------------
# Line 742
			$fp = @fopen($phpbb_root_path . 'templates/' . $template_name . '/theme_info.cfg', 'w');

#
#-----[ REPLACE WITH ]---------------------------------------------
# 
			$fp = @fopen($phpbb_root_path . 'templates/' . basename($template_name) . '/theme_info.cfg', 'w');
So that means I don't have to worry about it, right? And what does that code do for it anyway?
I write articles on community building
@ The Infinity Program.
User avatar
onigumo
Registered User
Posts: 1755
Joined: Fri Oct 31, 2003 2:32 am
Contact:

Post by onigumo »

[please delete]
I write articles on community building
@ The Infinity Program.
wickedintense
Registered User
Posts: 52
Joined: Mon Oct 25, 2004 2:42 am

Post by wickedintense »

my board is heavily modded and i just wanted to say thanks for posting the code changes. I really appreciate it, makes it all much easier
AlfaR
Registered User
Posts: 3
Joined: Sat Aug 02, 2003 6:03 am

Post by AlfaR »

wickedintense wrote: my board is heavily modded and i just wanted to say thanks for posting the code changes. I really appreciate it, makes it all much easier


I'll second that, I run a couple of heavily modded phpbb boards and would be royally stuck without the quick release of these files :D
SeraphicGate
Registered User
Posts: 207
Joined: Tue Dec 23, 2003 6:54 am

Post by SeraphicGate »

phpbb Staff, thanks for the quick post of the line-by-line code changes. I had no problems upgrading. I also deleted the "db/oracle.php" file as instructed with no problems.
ycl6
Registered User
Posts: 5696
Joined: Sat Feb 15, 2003 10:35 am
Location: Taiwan
Contact:

Post by ycl6 »

onigumo wrote: For a reason by which I believe is not important to reveal in this case, I removed the file which requires the following code changes:

Code: Select all

# 
#-----[ OPEN ]--------------------------------------------- 
# 
admin/admin_styles.php

#
#-----[ FIND ]---------------------------------------------
# Line 78
			include($phpbb_root_path. "templates/" . $install_to . "/theme_info.cfg");

#
#-----[ REPLACE WITH ]---------------------------------------------
# 
			include($phpbb_root_path. "templates/" . basename($install_to) . "/theme_info.cfg");

#
#-----[ FIND ]---------------------------------------------
# Line 742
			$fp = @fopen($phpbb_root_path . 'templates/' . $template_name . '/theme_info.cfg', 'w');

#
#-----[ REPLACE WITH ]---------------------------------------------
# 
			$fp = @fopen($phpbb_root_path . 'templates/' . basename($template_name) . '/theme_info.cfg', 'w');
So that means I don't have to worry about it, right? And what does that code do for it anyway?

You do not have to make the changes in admin/admin_styles.php as stated in the tutorial, but you should identify where has that section of codes go?

Sometimes, some MODs will move phpBB codes to other MOD-included files, in this case, it doesn't mean you DONT have to edit, but you need to find where has the code being moved to. Or, you should consult the MOD author regarding a possible update on his/her MOD.

~Mac
stormin4
Registered User
Posts: 24
Joined: Sat Oct 02, 2004 5:14 pm
Contact:

Post by stormin4 »

AlfaR wrote:
wickedintense wrote:my board is heavily modded and i just wanted to say thanks for posting the code changes. I really appreciate it, makes it all much easier


I'll second that, I run a couple of heavily modded phpbb boards and would be royally stuck without the quick release of these files :D


I'll "third" that as I also have a heavily modded board.

Thanks Acyd Burn for always being on top of your game!! :D
troll565
Registered User
Posts: 2
Joined: Sat Apr 16, 2005 1:52 am

Post by troll565 »

any idea about this error after going from 2.0.13 to 2.0.14?


Parse error: parse error, unexpected '}' in /home/starch3/public_html/forum/viewtopic.php on line 1229
porplemontage
Registered User
Posts: 15
Joined: Sun Oct 10, 2004 3:48 am

Post by porplemontage »

stormin4 wrote:
AlfaR wrote:
wickedintense wrote:my board is heavily modded and i just wanted to say thanks for posting the code changes. I really appreciate it, makes it all much easier


I'll second that, I run a couple of heavily modded phpbb boards and would be royally stuck without the quick release of these files :D


I'll "third" that as I also have a heavily modded board.

Thanks Acyd Burn for always being on top of your game!! :D

It's great that they give us the code changes. Thanks guys, I am now running 2.0.14 with no problems. :wink:
[porplemontage studios]
>>internet entertainment
User avatar
Marshalrusty
Project Manager
Project Manager
Posts: 29334
Joined: Mon Nov 22, 2004 10:45 pm
Location: New York City
Name: Yuriy Rusko
Contact:

Post by Marshalrusty »

troll565 wrote: any idea about this error after going from 2.0.13 to 2.0.14?


Parse error: parse error, unexpected '}' in /home/starch3/public_html/forum/viewtopic.php on line 1229


You have an unexpected '}' in /home/starch3/public_html/forum/viewtopic.php on line 1229 :)
Are you sure you didn't paste the code in before a }, instead of after it?

Code: Select all

          }
     }                     (like after this one, instead of the last one)
}
🇺🇦 Made in Ukraine, exported to the USA 🇺🇸

Have comments/praise/complaints/suggestions? Please feel free to PM me.

Need private help? Hire me for all your phpBB and web development needs
Post Reply

Return to “[2.0.x] MOD Database Releases”