Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
0c072eb0
Commit
0c072eb0
authored
Oct 23, 2013
by
Falko Timme
Browse files
- Fixed FS#3141 - Subdomains in website harddisk qouta box on dashboard.
parent
6ba4fa90
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/dashboard/dashlets/quota.php
View file @
0c072eb0
...
...
@@ -30,7 +30,7 @@ class dashlet_quota {
$has_quota
=
false
;
// select websites belonging to client
$sites
=
$app
->
db
->
queryAllRecords
(
"SELECT * FROM web_domain WHERE active = 'y'"
.
$sql_where
);
$sites
=
$app
->
db
->
queryAllRecords
(
"SELECT * FROM web_domain WHERE active = 'y'
AND type = 'vhost'
"
.
$sql_where
);
//print_r($sites);
if
(
is_array
(
$sites
)
&&
!
empty
(
$sites
)){
for
(
$i
=
0
;
$i
<
sizeof
(
$sites
);
$i
++
){
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment