Completed
Push — 1.11.x ( db9766...f61bdf )
by José
49:38 queued 25:09
created
plugin/buycourses/src/configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
 // breadcrumbs
25 25
 $interbreadcrumb[] = [
26
-    'url' => api_get_path(WEB_PLUGIN_PATH) . 'buycourses/index.php',
26
+    'url' => api_get_path(WEB_PLUGIN_PATH).'buycourses/index.php',
27 27
     'name' => $plugin->get_lang('Home')
28 28
 ];
29 29
 
Please login to merge, or discard this patch.
plugin/buycourses/src/service_error.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         Display::return_message($plugin->get_lang('OrderCancelled'), 'error', false)
23 23
     );
24 24
 
25
-    header('Location: '. api_get_path(WEB_PLUGIN_PATH) . 'buycourses/src/service_catalog.php');
25
+    header('Location: '.api_get_path(WEB_PLUGIN_PATH).'buycourses/src/service_catalog.php');
26 26
     exit;
27 27
 }
28 28
 
@@ -30,6 +30,6 @@  discard block
 block discarded – undo
30 30
     Display::return_message($plugin->get_lang('ErrorOccurred'), 'error', false)
31 31
 );
32 32
 
33
-header('Location: '. api_get_path(WEB_PLUGIN_PATH) . 'buycourses/src/service_catalog.php');
33
+header('Location: '.api_get_path(WEB_PLUGIN_PATH).'buycourses/src/service_catalog.php');
34 34
 
35 35
 exit;
Please login to merge, or discard this patch.
plugin/buycourses/src/service_sales_report.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
     $toolbar .= Display::toolbarButton(
62 62
         $plugin->get_lang('PaypalPayoutCommissions'),
63
-        api_get_path(WEB_PLUGIN_PATH) . 'buycourses/src/paypal_payout.php',
63
+        api_get_path(WEB_PLUGIN_PATH).'buycourses/src/paypal_payout.php',
64 64
         'paypal',
65 65
         'primary',
66 66
         ['title' => $plugin->get_lang('PaypalPayoutCommissions')]
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
     $toolbar .= Display::toolbarButton(
76 76
         $plugin->get_lang('PayoutReport'),
77
-        api_get_path(WEB_PLUGIN_PATH) . 'buycourses/src/payout_report.php',
77
+        api_get_path(WEB_PLUGIN_PATH).'buycourses/src/payout_report.php',
78 78
         'money',
79 79
         'info',
80 80
         ['title' => $plugin->get_lang('PayoutReport')]
Please login to merge, or discard this patch.