aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data/v310
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-03-06 11:32:23 +0100
committerMarc Alexander <admin@m-a-styles.de>2013-03-06 11:32:23 +0100
commit5963905825ed65a522fe94e380c6c179a461e437 (patch)
tree328f054764a1669826372f2e8f3eb5dca8f0cc63 /phpBB/phpbb/db/migration/data/v310
parent597c16a9363858e343480f70b1852bce2bba5ca3 (diff)
downloadforums-5963905825ed65a522fe94e380c6c179a461e437.tar
forums-5963905825ed65a522fe94e380c6c179a461e437.tar.gz
forums-5963905825ed65a522fe94e380c6c179a461e437.tar.bz2
forums-5963905825ed65a522fe94e380c6c179a461e437.tar.xz
forums-5963905825ed65a522fe94e380c6c179a461e437.zip
[ticket/11404] Return empty array of avatar data if $row is empty
While creating a group in the acp, the group data ($group_row) is empty. Due to that array_combine in phpbb_avatar_manager::clean_row() will cause PHP Warnings. In addition to that the required indexes 'avatar', 'avatar_width', 'avatar_height', and 'avatar_type' won't be defined. This patch will solve that issue. PHPBB3-11404
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v310')
0 files changed, 0 insertions, 0 deletions
td class='ctrl'>
authorPascal Rigaux <pixel@mandriva.com>2002-01-08 13:03:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-01-08 13:03:19 +0000
commitbdf673229f0f4abbf47ffce2432732a079521c80 (patch)
tree5236d92c2bf7a50ec5e7b5675d5184693720df37 /perl-install/standalone/drakbackup
parent8b15689cb18745a4c86ad6f4047d72eb86abd49f (diff)
downloaddrakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar
drakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar.gz
drakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar.bz2
drakx-bdf673229f0f4abbf47ffce2432732a079521c80.tar.xz
drakx-bdf673229f0f4abbf47ffce2432732a079521c80.zip
another round of bad use of _() fixes.
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-xperl-install/standalone/drakbackup6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup
index 2bded3cf6..3d5c0c7aa 100755
--- a/perl-install/standalone/drakbackup
+++ b/perl-install/standalone/drakbackup
@@ -1537,9 +1537,9 @@ sub system_state {
if ($cfg_file_exist) {
$system_state .= _("\nBackup Sources: \n");
$backup_sys and $system_state .= _("\n- System Files:\n");
- $backup_sys and $system_state .= _("\t\t$_\n") foreach @sys_files;
+ $backup_sys and $system_state .= "\t\t$_\n" foreach @sys_files;
$backup_user and $system_state .= _("\n- Users Files:\n");
- $backup_user and $system_state .= _("\t\t$_\n") foreach @user_list;
+ $backup_user and $system_state .= "\t\t$_\n" foreach @user_list;
@list_other and $system_state .= _("\n- Other Files:\n");
@list_other and $system_state .= "\t\t$_\n" foreach @list_other;
$system_state .= _("\n- Path to save backups: %s\n", $save_path);
@@ -2939,7 +2939,7 @@ _("options description:
Like with cvs, Drakbackup will ignore all references
included on .backupignore files in each directories.
ex:
- \$> cat .backupignore
+ #> cat .backupignore
*.o
*~
...