Skip to content

Commit

Permalink
Fix includes.
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Jan 30, 2024
1 parent abb801c commit ae0ff46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions classes/Shortcodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function shortcode_projects_active() {

ob_start();

$this->plugin->plugin_include( 'templates/projects.php' );
include __DIR__ . '/../templates/projects.php';

$return = ob_get_contents();

Expand All @@ -53,7 +53,7 @@ public function shortcode_projects_without_agreement() {

ob_start();

$this->plugin->plugin_include( 'templates/projects-without-agreement.php' );
include __DIR__ . '/../templates/projects-without-agreement.php';

$return = ob_get_contents();

Expand All @@ -73,7 +73,7 @@ public function shortcode_projects_to_invoice() {

ob_start();

$this->plugin->plugin_include( 'templates/projects-to-invoice.php' );
include __DIR__ . '/../templates/projects-to-invoice.php';

$return = ob_get_contents();

Expand Down

0 comments on commit ae0ff46

Please sign in to comment.