Skip to content

Commit 758d2c3

Browse files
committed
Replace unnecessary use of DIRECTORY_SEPARATOR by /
1 parent 8c268da commit 758d2c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/pages/search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
$f_offset = gpc_get_int( 'offset', 1 );
1111
$f_perpage = 25;
1212

13-
require_once( config_get( 'plugin_path' ) . 'Source' . DIRECTORY_SEPARATOR . 'Source.FilterAPI.php' );
13+
require_once( config_get( 'plugin_path' ) . 'Source/Source.FilterAPI.php' );
1414

1515
# Generate listing
1616
list( $t_filter, $t_permalink ) = Source_Generate_Filter();

Source/pages/search_page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
access_ensure_global_level( plugin_config_get( 'view_threshold' ) );
77

8-
require_once( config_get( 'plugin_path' ) . 'Source' . DIRECTORY_SEPARATOR . 'Source.FilterAPI.php' );
8+
require_once( config_get( 'plugin_path' ) . 'Source/Source.FilterAPI.php' );
99

1010
list( $t_filter, $t_permalink ) = Source_Generate_Filter();
1111

0 commit comments

Comments
 (0)