diff --git a/lib/tablelisting/customer/tablelisting.domains.php b/lib/tablelisting/customer/tablelisting.domains.php index 84ba85f5..36466339 100644 --- a/lib/tablelisting/customer/tablelisting.domains.php +++ b/lib/tablelisting/customer/tablelisting.domains.php @@ -26,11 +26,11 @@ return [ 'columns' => [ 'd.domain_ace' => [ 'label' => $lng['domains']['domainname'], - 'column' => 'domain_ace', + 'field' => 'domain_ace', ], 'd.documentroot' => [ 'label' => $lng['panel']['path'], - 'column' => 'documentroot', + 'field' => 'documentroot', 'format_callback' => [Domain::class, 'domainTarget'], ] ], diff --git a/lib/tablelisting/customer/tablelisting.emails.php b/lib/tablelisting/customer/tablelisting.emails.php index b4f79cae..6fb9deec 100644 --- a/lib/tablelisting/customer/tablelisting.emails.php +++ b/lib/tablelisting/customer/tablelisting.emails.php @@ -27,27 +27,27 @@ return [ 'columns' => [ 'm.email_full' => [ 'label' => $lng['emails']['emailaddress'], - 'column' => 'email_full', + 'field' => 'email_full', ], 'm.destination' => [ 'label' => $lng['emails']['forwarders'], - 'column' => 'destination', + 'field' => 'destination', // @todo formatting ], 'm.popaccountid' => [ 'label' => $lng['emails']['account'], - 'column' => 'popaccountid', + 'field' => 'popaccountid', 'format_callback' => [Email::class, 'account'], ], 'm.iscatchall' => [ 'label' => $lng['emails']['catchall'], - 'column' => 'iscatchall', + 'field' => 'iscatchall', 'format_callback' => [Text::class, 'boolean'], 'visible' => \Froxlor\Settings::Get('catchall.catchall_enabled') == '1' ], 'm.quota' => [ 'label' => $lng['emails']['quota'], - 'column' => 'quota', + 'field' => 'quota', 'visible' => \Froxlor\Settings::Get('system.mail_quota_enabled') == '1' ] ], diff --git a/lib/tablelisting/customer/tablelisting.ftps.php b/lib/tablelisting/customer/tablelisting.ftps.php index ce338c49..fd4e26f2 100644 --- a/lib/tablelisting/customer/tablelisting.ftps.php +++ b/lib/tablelisting/customer/tablelisting.ftps.php @@ -26,20 +26,20 @@ return [ 'columns' => [ 'username' => [ 'label' => $lng['login']['username'], - 'column' => 'username', + 'field' => 'username', ], 'description' => [ 'label' => $lng['panel']['ftpdesc'], - 'column' => 'description' + 'field' => 'description' ], 'homedir' => [ 'label' => $lng['panel']['path'], - 'column' => 'homedir', + 'field' => 'homedir', 'format_callback' => [Ftp::class, 'pathRelative'] ], 'shell' => [ 'label' => $lng['panel']['shell'], - 'column' => 'shell', + 'field' => 'shell', 'visible' => \Froxlor\Settings::Get('system.allow_customer_shell') == '1' ] ], diff --git a/lib/tablelisting/customer/tablelisting.htaccess.php b/lib/tablelisting/customer/tablelisting.htaccess.php index eab4b7ab..d4ab77d3 100644 --- a/lib/tablelisting/customer/tablelisting.htaccess.php +++ b/lib/tablelisting/customer/tablelisting.htaccess.php @@ -27,29 +27,29 @@ return [ 'columns' => [ 'path' => [ 'label' => $lng['panel']['path'], - 'column' => 'path', + 'field' => 'path', 'format_callback' => [Ftp::class, 'pathRelative'] ], 'option_indexes' => [ 'label' => $lng['extras']['view_directory'], - 'column' => 'option_indexes', + 'field' => 'option_indexes', 'format_callback' => [Text::class, 'boolean'] ], 'error404path' => [ 'label' => $lng['extras']['error404path'], - 'column' => 'error404path' + 'field' => 'error404path' ], 'error403path' => [ 'label' => $lng['extras']['error403path'], - 'column' => 'error403path' + 'field' => 'error403path' ], 'error500path' => [ 'label' => $lng['extras']['error500path'], - 'column' => 'error500path' + 'field' => 'error500path' ], 'options_cgi' => [ 'label' => $lng['extras']['execute_perl'], - 'column' => 'options_cgi', + 'field' => 'options_cgi', 'format_callback' => [Text::class, 'boolean'], 'visible' => $cperlenabled ] diff --git a/lib/tablelisting/customer/tablelisting.htpasswd.php b/lib/tablelisting/customer/tablelisting.htpasswd.php index 7d2f1c66..dd6b74ea 100644 --- a/lib/tablelisting/customer/tablelisting.htpasswd.php +++ b/lib/tablelisting/customer/tablelisting.htpasswd.php @@ -26,11 +26,11 @@ return [ 'columns' => [ 'username' => [ 'label' => $lng['login']['username'], - 'column' => 'username' + 'field' => 'username' ], 'path' => [ 'label' => $lng['panel']['path'], - 'column' => 'path', + 'field' => 'path', 'format_callback' => [Ftp::class, 'pathRelative'] ] ],