Skip to content

Commit 70f65b6

Browse files
committed
Fix file_exists check for custom.php
As per PR 62: solusio#62
1 parent abed92e commit 70f65b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/servers/solusvmpro/solusvmpro.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
die( "This file cannot be accessed directly" );
1717
}
1818

19-
if ( file_exists( ROOTDIR . "/custom.php" ) ) {
19+
if ( file_exists( ROOTDIR . "/modules/servers/solusvmpro/custom.php" ) ) {
2020
require_once( ROOTDIR . "/modules/servers/solusvmpro/custom.php" );
2121
}
2222

0 commit comments

Comments
 (0)