- Make sure
phpBB/docs/CREDTIS.txt
is up to date - Make sure Contributors have their ranks
- Make sure all reports in the security tracker are closed or invalid
- Go through Issues fixed in 3.2.1 and correct any unreadable descriptions
- Check the feature hightlights wiki page for completeness
- Branch of
prep-release-3.2.1
from 3.2.x:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/language/en/acp/attachments.php b/phpBB/language/en/acp/attachments.php | |
index 7d3d93d..750f2f8 100644 | |
--- a/phpBB/language/en/acp/attachments.php | |
+++ b/phpBB/language/en/acp/attachments.php | |
@@ -125,7 +125,7 @@ $lang = array_merge($lang, array( | |
'MAX_EXTGROUP_FILESIZE' => 'Maximum file size', | |
'MAX_IMAGE_SIZE' => 'Maximum image dimensions', | |
'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.', | |
- 'MAX_THUMB_WIDTH' => 'Maximum thumbnail width in pixel', | |
+ 'MAX_THUMB_WIDTH' => 'Maximum thumbnail width/height in pixel', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/language/en/acp/attachments.php b/phpBB/language/en/acp/attachments.php | |
index 2026453..123c35a 100644 | |
--- a/phpBB/language/en/acp/attachments.php | |
+++ b/phpBB/language/en/acp/attachments.php | |
@@ -119,7 +119,7 @@ $lang = array_merge($lang, array( | |
'MAX_EXTGROUP_FILESIZE' => 'Maximum file size', | |
'MAX_IMAGE_SIZE' => 'Maximum image dimensions', | |
'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.', | |
- 'MAX_THUMB_WIDTH' => 'Maximum thumbnail width in pixel', | |
+ 'MAX_THUMB_WIDTH' => 'Maximum thumbnail width/height in pixel', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/style.cfg b/phpBB/styles/prosilver/style.cfg | |
index 300a831..019db11 100644 | |
--- a/phpBB/styles/prosilver/style.cfg | |
+++ b/phpBB/styles/prosilver/style.cfg | |
@@ -21,8 +21,8 @@ | |
# General Information about this style | |
name = prosilver | |
copyright = © phpBB Limited, 2007 | |
-style_version = 3.1.10 | |
-phpbb_version = 3.1.10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/style.cfg b/phpBB/styles/prosilver/style.cfg | |
index 7252820..2deceef 100644 | |
--- a/phpBB/styles/prosilver/style.cfg | |
+++ b/phpBB/styles/prosilver/style.cfg | |
@@ -21,8 +21,8 @@ | |
# General Information about this style | |
name = prosilver | |
copyright = © phpBB Limited, 2007 | |
-style_version = 3.2.0 | |
-phpbb_version = 3.2.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/.htdev b/.htdev | |
index 3799b87..dc565db 100644 | |
--- a/.htdev | |
+++ b/.htdev | |
@@ -7,17 +7,17 @@ | |
# Including as mentioned above should work in almost every case. | |
# Include old .htdev | |
-Include /var/www/www.phpbb.com/htdocs/old/.htdev | |
+Include /var/www/website/.htdev |
- Make sure
phpBB/docs/CREDTIS.txt
is up to date - Make sure Contributors have their ranks
- Make sure all reports in the security tracker are closed or invalid
- Go through Issues fixed in 3.2.3 and correct any unreadable descriptions
- Check the feature hightlights wiki page for completeness
- Branch of
prep-release-3.2.3
from 3.2.x:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# bash generate random alphanumeric string | |
# | |
# bash generate random 32 character alphanumeric string (upper and lowercase) and | |
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
# bash generate random 32 character alphanumeric string (lowercase only) | |
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php | |
index e6c56a5..25d7081 100644 | |
--- a/phpBB/language/en/acp/board.php | |
+++ b/phpBB/language/en/acp/board.php | |
@@ -107,7 +107,7 @@ $lang = array_merge($lang, array( | |
'ACP_AVATAR_SETTINGS_EXPLAIN' => 'Avatars are generally small, unique images a user can associate with themselves. Depending on the style they are usually displayed below the username when viewing topics. Here you can determine how users can define their avatars. Please note that in order to upload avatars you need to have created the directory you name below and ensure it can be written to by the web server. Please also note that file size limits are only imposed on uploaded avatars, they do not apply to remotely linked images.', | |
'ALLOW_AVATARS' => 'Enable avatars', | |
- 'ALLOW_AVATARS_EXPLAIN' => 'Allow general usage of avatars;<br />If you disable avatars in general or avatars of a certain mode, the disabled avatars will no longer be shown on the board, but users |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css | |
index 70cfb83..79b769b 100644 | |
--- a/phpBB/styles/prosilver/theme/bidi.css | |
+++ b/phpBB/styles/prosilver/theme/bidi.css | |
@@ -239,6 +239,10 @@ | |
/* Pagination | |
---------------------------------------- */ | |
+.rtl .page-number { | |
+ float: left; |