@@ -72,19 +72,19 @@ discard block |
||
72 | 72 | $data = array(); |
73 | 73 | $content = $this->get_content_html(); |
74 | 74 | $html = '<div class="panel panel-default" id="intro"> |
75 | - <div class="panel-heading">' . get_lang('GradebookAndAttendances') . ' |
|
75 | + <div class="panel-heading">' . get_lang('GradebookAndAttendances').' |
|
76 | 76 | <div class="pull-right"><a class="btn btn-danger btn-xs" onclick="javascript:if(!confirm(\'' . addslashes( |
77 | 77 | api_htmlentities( |
78 | 78 | get_lang('ConfirmYourChoice'), |
79 | 79 | ENT_QUOTES, |
80 | 80 | $charset |
81 | 81 | ) |
82 | - ) . '\')) return false;" href="index.php?action=disable_block&path=' . $this->path . '"> |
|
82 | + ).'\')) return false;" href="index.php?action=disable_block&path='.$this->path.'"> |
|
83 | 83 | <em class="fa fa-times"></em> |
84 | 84 | </a></div> |
85 | 85 | </div> |
86 | 86 | <div class="panel-body"> |
87 | - ' . $content . ' |
|
87 | + ' . $content.' |
|
88 | 88 | </div> |
89 | 89 | </div> |
90 | 90 | '; |
@@ -102,17 +102,17 @@ discard block |
||
102 | 102 | { |
103 | 103 | $course_data = $this->get_course_information_data(); |
104 | 104 | //$content = '<div style="margin:10px;">'; |
105 | - $content = '<h4>' . get_lang( |
|
105 | + $content = '<h4>'.get_lang( |
|
106 | 106 | 'YourCourseList' |
107 | - ) . '</h4>'; |
|
107 | + ).'</h4>'; |
|
108 | 108 | $data_table = null; |
109 | 109 | if (!empty($course_data)) { |
110 | 110 | $data_table .= '<table class="data_table" width:"95%">'; |
111 | 111 | $data_table .= '<tr> |
112 | - <th>' . get_lang('CourseTitle') . '</th> |
|
113 | - <th width="20%">' . get_lang('NbStudents') . '</th> |
|
114 | - <th width="20%">' . get_lang('Evaluation') . '</th> |
|
115 | - <th width="20%">' . get_lang('ToolAttendance') . '</th> |
|
112 | + <th>' . get_lang('CourseTitle').'</th> |
|
113 | + <th width="20%">' . get_lang('NbStudents').'</th> |
|
114 | + <th width="20%">' . get_lang('Evaluation').'</th> |
|
115 | + <th width="20%">' . get_lang('ToolAttendance').'</th> |
|
116 | 116 | </tr>'; |
117 | 117 | $i = 1; |
118 | 118 | foreach ($course_data as $course) { |
@@ -121,12 +121,12 @@ discard block |
||
121 | 121 | } else { |
122 | 122 | $class_tr = 'row_even'; |
123 | 123 | } |
124 | - $data_table .= '<tr class="' . $class_tr . '">'; |
|
124 | + $data_table .= '<tr class="'.$class_tr.'">'; |
|
125 | 125 | if (!isset($course[3])) { |
126 | 126 | $course[3] = get_lang('NotAvailable'); |
127 | 127 | } |
128 | 128 | foreach ($course as $cell) { |
129 | - $data_table .= '<td align="right">' . $cell . '</td>'; |
|
129 | + $data_table .= '<td align="right">'.$cell.'</td>'; |
|
130 | 130 | } |
131 | 131 | $data_table .= '</tr>'; |
132 | 132 | $i++; |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | $content .= $data_table; |
139 | 139 | if (!empty($course_data)) { |
140 | 140 | $content .= '<div style="text-align:right;margin-top:10px;"> |
141 | - <a href="' . api_get_path(WEB_CODE_PATH) . 'mySpace/course.php">' . get_lang('SeeMore') . '</a></div>'; |
|
141 | + <a href="' . api_get_path(WEB_CODE_PATH).'mySpace/course.php">'.get_lang('SeeMore').'</a></div>'; |
|
142 | 142 | } |
143 | 143 | //$content .= '</div>'; |
144 | 144 | return $content; |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | $table_course = Database::get_course_table(TABLE_ATTENDANCE); |
177 | 177 | |
178 | 178 | $sql = "SELECT id, name, attendance_qualify_max FROM $table_course |
179 | - WHERE c_id = " . $course_info['real_id'] . " AND active = 1 AND session_id = 0"; |
|
179 | + WHERE c_id = ".$course_info['real_id']." AND active = 1 AND session_id = 0"; |
|
180 | 180 | $rs = Database::query($sql); |
181 | 181 | $attendance = array(); |
182 | 182 | $attendances = array(); |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | $attendance['course_code'] = $course_info['code']; |
189 | 189 | |
190 | 190 | if ($attendance['done'] != '0') { |
191 | - $attendances[] = '<a href="' . api_get_path(WEB_PATH).'main/attendance/index.php?cidReq=' . $attendance['course_code'] . '&action=attendance_sheet_print&attendance_id=' . $attendance['id']. '">' . Display::return_icon('printmgr.gif', get_lang('Print')).'</a>'; |
|
191 | + $attendances[] = '<a href="'.api_get_path(WEB_PATH).'main/attendance/index.php?cidReq='.$attendance['course_code'].'&action=attendance_sheet_print&attendance_id='.$attendance['id'].'">'.Display::return_icon('printmgr.gif', get_lang('Print')).'</a>'; |
|
192 | 192 | } else { |
193 | 193 | $attendances[] = get_lang("NotAvailable"); |
194 | 194 | } |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | // Number of students |
201 | 201 | |
202 | 202 | $sql = "SELECT user_id FROM $tbl_course_user as course_rel_user |
203 | - WHERE course_rel_user.status=" . STUDENT . " AND course_rel_user.c_id=$courseId"; |
|
203 | + WHERE course_rel_user.status=".STUDENT." AND course_rel_user.c_id=$courseId"; |
|
204 | 204 | $rs = Database::query($sql); |
205 | 205 | $users = array(); |
206 | 206 | while ($row = Database::fetch_array($rs)) { |
@@ -211,11 +211,11 @@ discard block |
||
211 | 211 | } |
212 | 212 | |
213 | 213 | if (!empty($tematic_advance)) { |
214 | - $tematic_advance_progress = '<a title="' . get_lang( |
|
214 | + $tematic_advance_progress = '<a title="'.get_lang( |
|
215 | 215 | 'GoToThematicAdvance' |
216 | - ) . '" href="' . api_get_path( |
|
216 | + ).'" href="'.api_get_path( |
|
217 | 217 | WEB_CODE_PATH |
218 | - ) . 'attendance/index.php?cidReq=' . $course_code . '&action=attendance_sheet_print&attendance_id=">' . $tematic_advance . '%</a>'; |
|
218 | + ).'attendance/index.php?cidReq='.$course_code.'&action=attendance_sheet_print&attendance_id=">'.$tematic_advance.'%</a>'; |
|
219 | 219 | } else { |
220 | 220 | $tematic_advance_progress = '0%'; |
221 | 221 | } |
@@ -224,8 +224,8 @@ discard block |
||
224 | 224 | $tbl_grade_categories = Database :: get_main_table( |
225 | 225 | TABLE_MAIN_GRADEBOOK_CATEGORY |
226 | 226 | ); |
227 | - $sql = "SELECT id from " . $tbl_grade_categories . " |
|
228 | - WHERE course_code ='" . $course_code . "'"; |
|
227 | + $sql = "SELECT id from ".$tbl_grade_categories." |
|
228 | + WHERE course_code ='" . $course_code."'"; |
|
229 | 229 | $rs = Database::query($sql); |
230 | 230 | $category = null; |
231 | 231 | while ($row = Database::fetch_array($rs)) { |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | if (count($eval) > 0) { |
239 | 239 | $i = 0; |
240 | 240 | foreach ($eval as $item) { |
241 | - $score .= '<a href="' . api_get_path(WEB_PATH).'main/gradebook/gradebook_view_result.php?export=pdf&cat_code=' . $cat[0]->get_id() . '&official_code=' . $cat[0]->get_course_code() . '&selecteval=' . $item->get_id(). '">' . $item->get_name() . '</a>'; |
|
241 | + $score .= '<a href="'.api_get_path(WEB_PATH).'main/gradebook/gradebook_view_result.php?export=pdf&cat_code='.$cat[0]->get_id().'&official_code='.$cat[0]->get_course_code().'&selecteval='.$item->get_id().'">'.$item->get_name().'</a>'; |
|
242 | 242 | if (count($eval) - 1 != $i) { |
243 | 243 | $score .= ', '; |
244 | 244 | } |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | // Show the FACEBOOK login button |
3 | -$_template['show_message'] = false; |
|
3 | +$_template['show_message'] = false; |
|
4 | 4 | |
5 | 5 | //if (api_is_anonymous() && api_get_setting('facebook_login_activate') == 'true') { |
6 | 6 | if (api_is_anonymous()) { |
7 | 7 | require_once api_get_path(SYS_CODE_PATH)."auth/external_login/facebook.inc.php"; |
8 | - $_template['show_message'] = true; |
|
8 | + $_template['show_message'] = true; |
|
9 | 9 | // the default title |
10 | 10 | $button_url = api_get_path(WEB_PLUGIN_PATH)."add_facebook_login_button/img/cnx_fb.png"; |
11 | 11 | $href_link = facebookGetLoginUrl(); |
@@ -11,18 +11,18 @@ |
||
11 | 11 | |
12 | 12 | class action_plugin_jcapture extends DokuWiki_Action_Plugin { |
13 | 13 | |
14 | - /** |
|
15 | - * return some info |
|
16 | - */ |
|
17 | - function getInfo(){ |
|
14 | + /** |
|
15 | + * return some info |
|
16 | + */ |
|
17 | + function getInfo(){ |
|
18 | 18 | return array( |
19 | - 'author' => 'Pavel Vlasov', |
|
20 | - 'email' => '[email protected]', |
|
21 | - 'name' => 'JCapture', |
|
22 | - 'desc' => 'Plugin for making screen captures.', |
|
23 | - 'url' => 'http://www.nasdanika.com/wiki/doku.php?id=products:jcapture:start', |
|
24 | - ); |
|
25 | - } |
|
19 | + 'author' => 'Pavel Vlasov', |
|
20 | + 'email' => '[email protected]', |
|
21 | + 'name' => 'JCapture', |
|
22 | + 'desc' => 'Plugin for making screen captures.', |
|
23 | + 'url' => 'http://www.nasdanika.com/wiki/doku.php?id=products:jcapture:start', |
|
24 | + ); |
|
25 | + } |
|
26 | 26 | |
27 | 27 | /** |
28 | 28 | * Register the eventhandlers |
@@ -6,15 +6,15 @@ discard block |
||
6 | 6 | */ |
7 | 7 | |
8 | 8 | if (!defined('DOKU_INC')) die(); |
9 | -if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); |
|
10 | -require_once (DOKU_PLUGIN . 'action.php'); |
|
9 | +if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC.'lib/plugins/'); |
|
10 | +require_once (DOKU_PLUGIN.'action.php'); |
|
11 | 11 | |
12 | 12 | class action_plugin_jcapture extends DokuWiki_Action_Plugin { |
13 | 13 | |
14 | 14 | /** |
15 | 15 | * return some info |
16 | 16 | */ |
17 | - function getInfo(){ |
|
17 | + function getInfo() { |
|
18 | 18 | return array( |
19 | 19 | 'author' => 'Pavel Vlasov', |
20 | 20 | 'email' => '[email protected]', |
@@ -28,14 +28,14 @@ discard block |
||
28 | 28 | * Register the eventhandlers |
29 | 29 | */ |
30 | 30 | function register(&$controller) { |
31 | - $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'insert_button', array ()); |
|
31 | + $controller->register_hook('TOOLBAR_DEFINE', 'AFTER', $this, 'insert_button', array()); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
35 | 35 | * Inserts the toolbar button |
36 | 36 | */ |
37 | 37 | function insert_button(& $event, $param) { |
38 | - $event->data[] = array ( |
|
38 | + $event->data[] = array( |
|
39 | 39 | 'type' => 'JCapture', |
40 | 40 | 'title' => 'Screen capture', |
41 | 41 | 'icon' => '../../plugins/jcapture/camera.png', |
@@ -5,8 +5,12 @@ |
||
5 | 5 | * @author Pavel Vlasov |
6 | 6 | */ |
7 | 7 | |
8 | -if (!defined('DOKU_INC')) die(); |
|
9 | -if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); |
|
8 | +if (!defined('DOKU_INC')) { |
|
9 | + die(); |
|
10 | +} |
|
11 | +if (!defined('DOKU_PLUGIN')) { |
|
12 | + define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); |
|
13 | +} |
|
10 | 14 | require_once (DOKU_PLUGIN . 'action.php'); |
11 | 15 | |
12 | 16 | class action_plugin_jcapture extends DokuWiki_Action_Plugin { |
@@ -21,9 +21,9 @@ |
||
21 | 21 | $documentId = DocumentManager::get_document_id($courseInfo, '/'.$folderName); |
22 | 22 | $path = null; |
23 | 23 | if (empty($documentId)) { |
24 | - $course_dir = $courseInfo['path'] . '/document'; |
|
24 | + $course_dir = $courseInfo['path'].'/document'; |
|
25 | 25 | $sys_course_path = api_get_path(SYS_COURSE_PATH); |
26 | - $dir = $sys_course_path . $course_dir; |
|
26 | + $dir = $sys_course_path.$course_dir; |
|
27 | 27 | $createdDir = create_unexisting_directory( |
28 | 28 | $courseInfo, |
29 | 29 | api_get_user_id(), |
@@ -1,31 +1,31 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | - //fix for Opera XMLHttpRequests |
|
4 | - if(!count($_POST) && $HTTP_RAW_POST_DATA){ |
|
5 | - parse_str($HTTP_RAW_POST_DATA, $_POST); |
|
6 | - } |
|
3 | + //fix for Opera XMLHttpRequests |
|
4 | + if(!count($_POST) && $HTTP_RAW_POST_DATA){ |
|
5 | + parse_str($HTTP_RAW_POST_DATA, $_POST); |
|
6 | + } |
|
7 | 7 | |
8 | - if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../'); |
|
9 | - require_once(DOKU_INC.'inc/init.php'); |
|
10 | - require_once(DOKU_INC.'inc/common.php'); |
|
11 | - require_once(DOKU_INC.'inc/pageutils.php'); |
|
12 | - require_once(DOKU_INC.'inc/auth.php'); |
|
13 | - //close sesseion |
|
14 | - session_write_close(); |
|
8 | + if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../'); |
|
9 | + require_once(DOKU_INC.'inc/init.php'); |
|
10 | + require_once(DOKU_INC.'inc/common.php'); |
|
11 | + require_once(DOKU_INC.'inc/pageutils.php'); |
|
12 | + require_once(DOKU_INC.'inc/auth.php'); |
|
13 | + //close sesseion |
|
14 | + session_write_close(); |
|
15 | 15 | |
16 | - header('Content-Type: text/html; charset=utf-8'); |
|
16 | + header('Content-Type: text/html; charset=utf-8'); |
|
17 | 17 | |
18 | - $hostName = "http".($_SERVER['HTTPS'] ? 's' : null).'://'.$_SERVER['HTTP_HOST']; |
|
18 | + $hostName = "http".($_SERVER['HTTPS'] ? 's' : null).'://'.$_SERVER['HTTP_HOST']; |
|
19 | 19 | |
20 | - $imageFormat = "PNG"; |
|
20 | + $imageFormat = "PNG"; |
|
21 | 21 | |
22 | - $cookies; |
|
23 | - foreach (array_keys($_COOKIE) as $cookieName) { |
|
24 | - $cookies.=bin2hex($cookieName)."=".bin2hex($_COOKIE[$cookieName]).";"; |
|
25 | - } |
|
22 | + $cookies; |
|
23 | + foreach (array_keys($_COOKIE) as $cookieName) { |
|
24 | + $cookies.=bin2hex($cookieName)."=".bin2hex($_COOKIE[$cookieName]).";"; |
|
25 | + } |
|
26 | 26 | |
27 | - $pageName = $_GET["pageName"]; |
|
28 | - $edid = $_GET["edid"]; |
|
27 | + $pageName = $_GET["pageName"]; |
|
28 | + $edid = $_GET["edid"]; |
|
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <script language="JavaScript" type="text/javascript"><!-- |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | //fix for Opera XMLHttpRequests |
4 | - if(!count($_POST) && $HTTP_RAW_POST_DATA){ |
|
4 | + if (!count($_POST) && $HTTP_RAW_POST_DATA) { |
|
5 | 5 | parse_str($HTTP_RAW_POST_DATA, $_POST); |
6 | 6 | } |
7 | 7 | |
8 | - if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../'); |
|
8 | + if (!defined('DOKU_INC')) define('DOKU_INC', dirname(__FILE__).'/../../../'); |
|
9 | 9 | require_once(DOKU_INC.'inc/init.php'); |
10 | 10 | require_once(DOKU_INC.'inc/common.php'); |
11 | 11 | require_once(DOKU_INC.'inc/pageutils.php'); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | $cookies; |
23 | 23 | foreach (array_keys($_COOKIE) as $cookieName) { |
24 | - $cookies.=bin2hex($cookieName)."=".bin2hex($_COOKIE[$cookieName]).";"; |
|
24 | + $cookies .= bin2hex($cookieName)."=".bin2hex($_COOKIE[$cookieName]).";"; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | $pageName = $_GET["pageName"]; |
@@ -5,7 +5,9 @@ |
||
5 | 5 | parse_str($HTTP_RAW_POST_DATA, $_POST); |
6 | 6 | } |
7 | 7 | |
8 | - if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../'); |
|
8 | + if(!defined('DOKU_INC')) { |
|
9 | + define('DOKU_INC',dirname(__FILE__).'/../../../'); |
|
10 | + } |
|
9 | 11 | require_once(DOKU_INC.'inc/init.php'); |
10 | 12 | require_once(DOKU_INC.'inc/common.php'); |
11 | 13 | require_once(DOKU_INC.'inc/pageutils.php'); |
@@ -24,7 +24,7 @@ |
||
24 | 24 | $imageFormat = "PNG"; |
25 | 25 | $cookies = null; |
26 | 26 | foreach (array_keys($_COOKIE) as $cookieName) { |
27 | - $cookies.=bin2hex($cookieName)."=".bin2hex($_COOKIE[$cookieName]).";"; |
|
27 | + $cookies .= bin2hex($cookieName)."=".bin2hex($_COOKIE[$cookieName]).";"; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | $pageName = 'file'; |
@@ -7,15 +7,15 @@ |
||
7 | 7 | * Initialization |
8 | 8 | */ |
9 | 9 | $convert_lang_to_code = array( |
10 | - "english" => "en_US", |
|
11 | - "french" => "fr_BE", |
|
12 | - "dutch" => "nl_NL", |
|
13 | - "german" => "de_DE", |
|
14 | - "japanese" => "ja_JP", |
|
15 | - "danish" => "da_DK", |
|
10 | + "english" => "en_US", |
|
11 | + "french" => "fr_BE", |
|
12 | + "dutch" => "nl_NL", |
|
13 | + "german" => "de_DE", |
|
14 | + "japanese" => "ja_JP", |
|
15 | + "danish" => "da_DK", |
|
16 | 16 | ); |
17 | 17 | if(!empty($_SESSION['user_language_choice']) && !empty($convert_lang_to_code[$_SESSION['user_language_choice']])){ |
18 | - $code = $convert_lang_to_code[$_SESSION['user_language_choice']]; |
|
19 | - $locale = setlocale(LC_TIME,$code); |
|
18 | + $code = $convert_lang_to_code[$_SESSION['user_language_choice']]; |
|
19 | + $locale = setlocale(LC_TIME,$code); |
|
20 | 20 | } |
21 | 21 | $date = strftime('%c'); |
@@ -14,8 +14,8 @@ |
||
14 | 14 | "japanese" => "ja_JP", |
15 | 15 | "danish" => "da_DK", |
16 | 16 | ); |
17 | -if(!empty($_SESSION['user_language_choice']) && !empty($convert_lang_to_code[$_SESSION['user_language_choice']])){ |
|
17 | +if (!empty($_SESSION['user_language_choice']) && !empty($convert_lang_to_code[$_SESSION['user_language_choice']])) { |
|
18 | 18 | $code = $convert_lang_to_code[$_SESSION['user_language_choice']]; |
19 | - $locale = setlocale(LC_TIME,$code); |
|
19 | + $locale = setlocale(LC_TIME, $code); |
|
20 | 20 | } |
21 | 21 | $date = strftime('%c'); |
@@ -9,10 +9,10 @@ |
||
9 | 9 | * Plugin details (must be present) |
10 | 10 | */ |
11 | 11 | //the plugin title |
12 | -$plugin_info['title']='Date'; |
|
12 | +$plugin_info['title'] = 'Date'; |
|
13 | 13 | //the comments that go with the plugin |
14 | -$plugin_info['comment']="Multinational date display"; |
|
14 | +$plugin_info['comment'] = "Multinational date display"; |
|
15 | 15 | //the plugin version |
16 | -$plugin_info['version']='1.0'; |
|
16 | +$plugin_info['version'] = '1.0'; |
|
17 | 17 | //the plugin author |
18 | -$plugin_info['author']='Yannick Warnier'; |
|
18 | +$plugin_info['author'] = 'Yannick Warnier'; |
@@ -33,7 +33,7 @@ |
||
33 | 33 | $list = $this->get_blacklist_options(); |
34 | 34 | foreach ($list as $k => $v) { |
35 | 35 | $this->course_settings[] = |
36 | - array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
36 | + array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
37 | 37 | } |
38 | 38 | require_once dirname(__FILE__).'/../config.php'; |
39 | 39 | if (!empty($blacklist_enabled_file)) { |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $list = $this->get_blacklist_options(); |
34 | 34 | foreach ($list as $k => $v) { |
35 | 35 | $this->course_settings[] = |
36 | - array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
36 | + array('group'=> 'olpc_peru_filter_filter', 'name' => $k, 'type' => 'checkbox', 'init_value' => $v); |
|
37 | 37 | } |
38 | 38 | require_once dirname(__FILE__).'/../config.php'; |
39 | 39 | if (!empty($blacklist_enabled_file)) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | function course_settings_updated($values = array()) { |
68 | - if (!is_array($values) or count($values)==0) { |
|
68 | + if (!is_array($values) or count($values) == 0) { |
|
69 | 69 | return false; |
70 | 70 | } |
71 | 71 | $this->set_blacklist_options($values['olpc_peru_filter_filter']); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | } |
87 | 87 | $list = scandir($this->blacklists_dir); |
88 | 88 | foreach ($list as $file) { |
89 | - if (substr($file,0,1) == '.' or $file == 'custom_blacklist' or is_dir($this->blacklists_dir.'/'.$file)) { |
|
89 | + if (substr($file, 0, 1) == '.' or $file == 'custom_blacklist' or is_dir($this->blacklists_dir.'/'.$file)) { |
|
90 | 90 | continue; |
91 | 91 | } |
92 | 92 | $categories[] = $file; |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $new_blacklist .= $k."\n"; |
122 | 122 | } |
123 | 123 | } |
124 | - $r = @file_put_contents($this->blacklist_enabled_file,$new_blacklist); |
|
124 | + $r = @file_put_contents($this->blacklist_enabled_file, $new_blacklist); |
|
125 | 125 | //todo check the value or $r in $php_errormsg |
126 | 126 | return true; |
127 | 127 | } |