';
@@ -4721,14 +4721,14 @@ class learnpath {
$sql = "SELECT lp.* FROM " . $tbl_lp_item . " as lp
WHERE lp.id = " . Database :: escape_string($item_id);
$result = Database::query($sql);
- while ($row = Database :: fetch_array($result)) {
+ while ($row = Database :: fetch_array($result)) {
$_SESSION['parent_item_id'] = ($row['item_type'] == 'dokeos_chapter' || $row['item_type'] == 'dokeos_module' || $row['item_type'] == 'dir') ? $item_id : 0;
-
- //Prevents wrong parent selection for document see Bug#1251
+
+ //Prevents wrong parent selection for document see Bug#1251
if ($row['item_type'] != 'dokeos_chapter' || $row['item_type'] != 'dokeos_module') {
- $_SESSION['parent_item_id'] = $row['parent_item_id'];
+ $_SESSION['parent_item_id'] = $row['parent_item_id'];
}
-
+
$return .= $this->display_manipulate($item_id, $row['item_type']);
$return .= '
';
if ($msg != '')
@@ -6058,7 +6058,7 @@ class learnpath {
'min_score' => $row['min_score'],
'mastery_score' => $row['mastery_score'],
'prerequisite' => $row['prerequisite']
- );
+ );
}
$this->tree_array($arrLP);
@@ -6117,7 +6117,7 @@ class learnpath {
}
}
}
-
+
$parent_select = & $form->addElement('select', 'parent', get_lang('Parent'), '', 'class="learnpath_item_form" style="width:40%;" onchange="load_cbo(this.value);"');
$my_count=0;
foreach ($arrHide as $key => $value) {
@@ -6131,15 +6131,15 @@ class learnpath {
}
$my_count++;
}
-
+
if (!empty ($id)) {
$parent_select->setSelected($parent);
- } else {
+ } else {
$parent_item_id = $_SESSION['parent_item_id'];
$parent_select->setSelected($parent_item_id);
}
-
-
+
+
if (is_array($arrLP)) {
reset($arrLP);
@@ -7151,7 +7151,7 @@ class learnpath {
global $charset;
$lp_id = $this->lp_id;
$tbl_lp = Database :: get_course_table(TABLE_LP_MAIN);
-
+
// get current prerequisite
$sql = "SELECT * FROM $tbl_lp WHERE id = $lp_id ";
$result = Database::query($sql);
@@ -7159,18 +7159,18 @@ class learnpath {
$preq_id = $row['prerequisite'];
$session_id = api_get_session_id();
$session_condition = api_get_session_condition($session_id, false);
- $sql = "SELECT * FROM $tbl_lp $session_condition ORDER BY display_order ";
+ $sql = "SELECT * FROM $tbl_lp $session_condition ORDER BY display_order ";
$rs = Database::query($sql);
$return = '';
$return .= '
';
- $return .= ''.get_lang('None').' ';
- if (Database::num_rows($rs) > 0) {
+ $return .= ''.get_lang('None').' ';
+ if (Database::num_rows($rs) > 0) {
while ($row = Database::fetch_array($rs)) {
if ($row['id'] == $lp_id) {
- continue;
- }
- $return .= ''.$row['name'].' ';
- }
+ continue;
+ }
+ $return .= ''.$row['name'].' ';
+ }
}
$return .= ' ';
return $return;
@@ -7250,21 +7250,21 @@ class learnpath {
*/
function write_resources_tree($resources_sorted, $num = 0) {
- require_once (api_get_path(LIBRARY_PATH) . 'fileDisplay.lib.php');
+ require_once (api_get_path(LIBRARY_PATH) . 'fileDisplay.lib.php');
if (count($resources_sorted) > 0) {
foreach ($resources_sorted as $key => $resource) {
- if (is_int($resource['id'])) {
+ if (is_int($resource['id'])) {
// it's a folder
$return .= '
' . $key . ' ';
$return .= $this->write_resources_tree($resource['files'], $num +1);
$return .= '
';
} else {
if (!is_array($resource)) {
- // it's a file
+ // it's a file
$icon = choose_image($resource);
$position = strrpos($icon, '.');
- $icon = substr($icon, 0, $position) . '_small.gif';
- $file_info = explode('/', $resource);
+ $icon = substr($icon, 0, $position) . '_small.gif';
+ $file_info = explode('/', $resource);
$my_file_title = $file_info[0];
$my_file_name = $file_info[1];
//$return .= '
';
diff --git a/main/newscorm/learnpathItem.class.php b/main/newscorm/learnpathItem.class.php
index d80054e3da..03d3fd4082 100755
--- a/main/newscorm/learnpathItem.class.php
+++ b/main/newscorm/learnpathItem.class.php
@@ -65,7 +65,7 @@ class learnpathItem {
* @param integer User ID
* @return boolean True on success, false on failure
*/
- function learnpathItem($db_id, $user_id) {
+ function learnpathItem($db_id, $user_id) {
//get items table
if(self::debug>0){error_log('New LP - In learnpathItem constructor: '.$db_id.','.$user_id,0);}
$items_table = Database::get_course_table(TABLE_LP_ITEM);
@@ -1016,7 +1016,7 @@ class learnpathItem {
$res = Database::query($sql);
if (Database::num_rows($res)==1) {
$row = Database::fetch_array($res);
- if($update_local==true){
+ if ($update_local) {
$this->set_status($row['status']);
}
if(self::debug>2){error_log('New LP - In learnpathItem::get_status() - Returning db value '.$row['status'],0);}
@@ -1108,7 +1108,7 @@ class learnpathItem {
if (empty($this->title)) {return '';}
return $this->title;
}
-
+
/**
* Returns the total time used to see that item
* @return integer Total time
@@ -1233,7 +1233,7 @@ class learnpathItem {
}*/
// if we don't init start time here, the time is sometimes calculated from the las start time
$this->current_start_time = time();
-
+
//error_log('New LP - reinit blocked by setting',0);
}
}
@@ -1260,7 +1260,7 @@ class learnpathItem {
* @param integer The user ID. In some cases like Dokeos quizzes, it's necessary to have the user ID to query other tables (like the results of quizzes)
* @return boolean True if the list of prerequisites given is entirely satisfied, false otherwise
*/
- function parse_prereq($prereqs_string, $items, $refs_list,$user_id){
+ function parse_prereq($prereqs_string, $items, $refs_list,$user_id){
if(self::debug>0){error_log('New LP - In learnpathItem::parse_prereq() for learnpath '.$this->lp_id.' with string '.$prereqs_string,0);}
//deal with &, |, ~, =, <>, {}, ,, X*, () in reverse order
$this->prereq_alert = '';
@@ -1287,9 +1287,9 @@ class learnpathItem {
}
}
}
-
+
//parenthesis removed, now look for ORs as it is the lesser-priority binary operator (= always uses one text operand)
- if (strpos($prereqs_string,"|")===false) {
+ if (strpos($prereqs_string,"|")===false) {
if(self::debug>1){error_log('New LP - Didnt find any OR, looking for AND',0);}
if(strpos($prereqs_string,"&")!==false){
$list = split("&",$prereqs_string);
@@ -1297,7 +1297,7 @@ class learnpathItem {
$andstatus = true;
foreach($list as $condition){
$andstatus = $andstatus && $this->parse_prereq($condition,$items,$refs_list,$user_id);
- if($andstatus==false){
+ if (!$andstatus) {
if(self::debug>1){error_log('New LP - One condition in AND was false, short-circuit',0);}
break;
}
@@ -1306,7 +1306,7 @@ class learnpathItem {
$this->prereq_alert = get_lang('_prereq_not_complete');
}
return $andstatus;
- } else {
+ } else {
if(isset($items[$refs_list[$list[0]]])){
$status = $items[$refs_list[$list[0]]]->get_status(true);
$returnstatus = (($status == $this->possible_status[2]) OR ($status == $this->possible_status[3]));
@@ -1450,38 +1450,38 @@ class learnpathItem {
} else {
//Nothing found there either. Now return the value of the corresponding resource completion status
- if(self::debug>1){error_log('New LP - Didnt find any group, returning value for '.$prereqs_string,0);}
-
+ if(self::debug>1){error_log('New LP - Didnt find any group, returning value for '.$prereqs_string,0);}
+
if (isset($items[$refs_list[$prereqs_string]])) {
if ($items[$refs_list[$prereqs_string]]->type == 'quiz') {
-
- //1. Checking the status in current items
+
+ //1. Checking the status in current items
$status = $items[$refs_list[$prereqs_string]]->get_status(true);
- //error_log('hello '.$status);
+ //error_log('hello '.$status);
$returnstatus = (($status == $this->possible_status[2]) OR ($status == $this->possible_status[3]));
-
+
if(!$returnstatus) {
if(self::debug>1){error_log('New LP - Prerequisite '.$prereqs_string.' not complete',0);}
} else {
if(self::debug>1){error_log('New LP - Prerequisite '.$prereqs_string.' complete',0);}
}
-
- //for one attempt LPs
- if ($this->prevent_reinit == 1) {
- //2. If is completed we check the results in the DB of the quiz
- if ($returnstatus) {
+ //for one attempt LPs
+ if ($this->prevent_reinit == 1) {
+
+ //2. If is completed we check the results in the DB of the quiz
+ if ($returnstatus) {
//AND origin_lp_item_id = '.$user_id.'
$sql = 'SELECT exe_result, exe_weighting
FROM '.Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_EXERCICES).'
WHERE exe_exo_id = '.$items[$refs_list[$prereqs_string]]->path.'
AND exe_user_id = '.$user_id.'
- AND orig_lp_id = '.$this->lp_id.' AND orig_lp_item_id = '.$prereqs_string.'
+ AND orig_lp_id = '.$this->lp_id.' AND orig_lp_item_id = '.$prereqs_string.'
AND status <> "incomplete"
ORDER BY exe_date DESC
LIMIT 0, 1';
//error_log('results :'.$items[$refs_list[$prereqs_string]]->path. ':'.$user_id);
-
+
$rs_quiz = Database::query($sql);
if($quiz = Database :: fetch_array($rs_quiz)) {
if($quiz['exe_result'] >= $items[$refs_list[$prereqs_string]]->get_mastery_score()) {
@@ -1493,19 +1493,19 @@ class learnpathItem {
} else {
$this->prereq_alert = get_lang('_prereq_not_complete');
$returnstatus = false;
- }
- }
-
+ }
+ }
+
} else {
//2. for multiple attempts we check that there are minimun 1 item completed
-
+
//checking in the database
$sql = 'SELECT exe_result, exe_weighting
FROM '.Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_EXERCICES).'
WHERE exe_exo_id = '.$items[$refs_list[$prereqs_string]]->path.'
AND exe_user_id = '.$user_id.' AND orig_lp_id = '.$this->lp_id.' AND orig_lp_item_id = '.$prereqs_string.' ';
//error_log('results 2:'.$items[$refs_list[$prereqs_string]]->path. ':'.$user_id);
-
+
$rs_quiz = Database::query($sql);
if (Database::num_rows($rs_quiz) > 0 ) {
while ($quiz = Database :: fetch_array($rs_quiz)) {
@@ -1521,11 +1521,11 @@ class learnpathItem {
$this->prereq_alert = get_lang('_prereq_not_complete');
$returnstatus = false;
}
-
- }
+
+ }
return $returnstatus;
} else {
-
+
$status = $items[$refs_list[$prereqs_string]]->get_status(false);
$returnstatus = (($status == $this->possible_status[2]) OR ($status == $this->possible_status[3]));
@@ -1537,23 +1537,23 @@ class learnpathItem {
//error_log('status of document'.$status);
//var_dump($returnstatus);
//$returnstatus = true;
- if ($returnstatus && $this->prevent_reinit == 1 ) {
+ if ($returnstatus && $this->prevent_reinit == 1 ) {
// i would prefer check in the database
$lp_item_view = Database::get_course_table(TABLE_LP_ITEM_VIEW);
$lp_view = Database::get_course_table(TABLE_LP_VIEW);
-
+
$sql = 'SELECT id FROM '.$lp_view.'
WHERE user_id = '.$user_id.' AND lp_id = '.$this->lp_id.' LIMIT 0, 1';
$rs_lp = Database::query($sql);
$lp_id = Database :: fetch_row($rs_lp);
$my_lp_id = $lp_id[0];
-
+
$sql = 'SELECT status FROM '.$lp_item_view.'
WHERE lp_view_id = '.$my_lp_id.' AND lp_item_id = '.$refs_list[$prereqs_string].' LIMIT 0, 1';
$rs_lp = Database::query($sql);
$status_array = Database :: fetch_row($rs_lp);
$status = $status_array[0];
-
+
//var_dump($status);
$returnstatus = (($status == $this->possible_status[2]) OR ($status == $this->possible_status[3]));
if (!$returnstatus && empty($this->prereq_alert)){
@@ -1565,7 +1565,7 @@ class learnpathItem {
if(self::debug>1){error_log('New LP - Prerequisite '.$prereqs_string.' complete',0);}
}
}
-
+
//error_log('results :'.$items[$refs_list[$prereqs_string]]->path. ':'.$user_id);
/*$rs_quiz = Database::query($sql);
if($quiz = Database :: fetch_array($rs_quiz))
@@ -1585,12 +1585,12 @@ class learnpathItem {
$this->prereq_alert = get_lang('_prereq_not_complete');
$returnstatus = false;
}*/
-
+
/*
$status = $items[$refs_list[$prereqs_string]]->get_status(true);
//error_log(print_r($items,1));
//error_log($refs_list[$prereqs_string]);
-
+
$returnstatus = (($status == $this->possible_status[2]) OR ($status == $this->possible_status[3]));
if(!$returnstatus && empty($this->prereq_alert)){
$this->prereq_alert = get_lang('_prereq_not_complete');
@@ -1601,7 +1601,7 @@ class learnpathItem {
if(self::debug>1){error_log('New LP - Prerequisite '.$prereqs_string.' complete',0);}
}
*/
-
+
//$returnstatus =false;
return $returnstatus;
}
@@ -1621,7 +1621,7 @@ class learnpathItem {
foreach($list as $condition){
if(self::debug>1){error_log('New LP - Found OR, adding it ('.$condition.')',0);}
$orstatus = $orstatus || $this->parse_prereq($condition,$items,$refs_list,$user_id);
- if($orstatus == true){
+ if ($orstatus) {
//shortcircuit OR
if(self::debug>1){error_log('New LP - One condition in OR was true, short-circuit',0);}
break;
@@ -1711,7 +1711,7 @@ class learnpathItem {
}else{
if(self::debug>1){error_log('New LP - In learnpathItem::save() - SCORM save request received',0);}
//get all new settings from the URL
- if($from_outside==true){
+ if ($from_outside) {
if(self::debug>1){error_log('New LP - In learnpathItem::save() - Getting item data from outside',0);}
foreach($_GET as $param => $value)
{
@@ -1778,7 +1778,7 @@ class learnpathItem {
}
}
}else{ //if not SCO, such messages should not be expected
- $type = strtolower($this->type);
+ $type = strtolower($this->type);
switch($type){
case 'asset':
if($prereqs_complete)
@@ -1877,7 +1877,7 @@ class learnpathItem {
{
if(self::debug>0){error_log('New LP - In learnpathItem::set_lp_view('.$lp_view_id.')',0);}
if(!empty($lp_view_id) and $lp_view_id = intval(strval($lp_view_id)))
- {
+ {
$this->view_id = $lp_view_id;
$item_view_table = Database::get_course_table(TABLE_LP_ITEM_VIEW);
//get the lp_item_view with the highest view_count
@@ -2304,7 +2304,7 @@ class learnpathItem {
//depending on what we want (really), we'll update or insert a new row
//now save into DB
$res = 0;
- if( $inserted==false && Database::num_rows($check_res)<1){
+ if (!$inserted && Database::num_rows($check_res) < 1) {
/*$my_status = '';
if ($this->type!=TOOL_QUIZ) {
$my_status = $this->get_status(false);
diff --git a/main/newscorm/lp_add_item.php b/main/newscorm/lp_add_item.php
index f2adecb776..2f35a606ec 100755
--- a/main/newscorm/lp_add_item.php
+++ b/main/newscorm/lp_add_item.php
@@ -50,7 +50,7 @@ function FCKeditor_OnComplete( editorInstance ) {
}
function check_for_title() {
- if (temp==true) {
+ if (temp) {
// This functions shows that you can interact directly with the editor area
// DOM. In this way you have the freedom to do anything you want with it.
@@ -119,7 +119,7 @@ function InnerDialogLoaded() {
$htmlHeadXtra[] = $_SESSION['oLP']->create_js();
/*
Constants and variables
-*/
+*/
$is_allowed_to_edit = api_is_allowed_to_edit(null,true);
diff --git a/main/newscorm/lp_controller.php b/main/newscorm/lp_controller.php
index 9117a8a97e..f42b8da139 100755
--- a/main/newscorm/lp_controller.php
+++ b/main/newscorm/lp_controller.php
@@ -71,7 +71,7 @@ if($debug>0) error_log('New LP - Included aiccItem',0);
require_once('back_compat.inc.php');
if($debug>0) error_log('New LP - Included back_compat',0);
-if ($is_allowed_in_course == false){
+if (!$is_allowed_in_course) {
api_not_allowed(true);
}
@@ -115,9 +115,9 @@ if(isset($_SESSION['lpobject']))
}
}
-if($debug>0) error_log('New LP - Passed data remains check',0);
+if ($debug>0) error_log('New LP - Passed data remains check',0);
-if($lp_found == false || (!empty($_REQUEST['lp_id']) && $_SESSION['oLP']->get_id() != $_REQUEST['lp_id'])) {
+if (!$lp_found || (!empty($_REQUEST['lp_id']) && $_SESSION['oLP']->get_id() != $_REQUEST['lp_id'])) {
if($debug>0) error_log('New LP - oLP is not object, has changed or refresh been asked, getting new',0);
//regenerate a new lp object? Not always as some pages don't need the object (like upload?)
if(!empty($_REQUEST['lp_id']) || !empty($myrefresh_id)){
@@ -436,7 +436,7 @@ switch($action)
else {
$_SESSION['refresh'] = 1;
- if (isset($_POST['submit_button'])) {
+ if (isset($_POST['submit_button'])) {
$_SESSION['oLP']->edit_item($_GET['id'], $_POST['parent'], $_POST['previous'], $_POST['title'] , $_POST['description'] );
$is_success = true;
}
@@ -447,7 +447,7 @@ switch($action)
//avoids weird behaviours see CT#967
$check = Security::check_token('get');
if ($check) {
- $_SESSION['oLP']->move_item($_GET['id'], $_GET['direction']);
+ $_SESSION['oLP']->move_item($_GET['id'], $_GET['direction']);
}
Security::clear_token();
require('lp_admin_view.php');
diff --git a/main/newscorm/lp_header.php b/main/newscorm/lp_header.php
index 1514850e00..99e281cc65 100755
--- a/main/newscorm/lp_header.php
+++ b/main/newscorm/lp_header.php
@@ -23,7 +23,7 @@ $path_name = $_SESSION['oLP']->get_name();
$path_id = $_SESSION['oLP']->get_id();
// use the flag set in lp_view.php to check if this script has been loaded
// as a frame of lp_view.php. Otherwise, redirect to lp_controller
-if(!isset($_SESSION['loaded_lp_view']) || $_SESSION['loaded_lp_view']==false)
+if (!$_SESSION['loaded_lp_view'])
{
header('location: lp_controller.php?'.api_get_cidreq().'&action=view&item_id='.$path_id);
}
diff --git a/main/newscorm/lp_upload.php b/main/newscorm/lp_upload.php
index 6ff5308be1..f764e723e6 100755
--- a/main/newscorm/lp_upload.php
+++ b/main/newscorm/lp_upload.php
@@ -55,7 +55,7 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST'
require_once('scorm.class.php');
$oScorm = new scorm();
$manifest = $oScorm->import_package($_FILES['user_file'],$current_dir);
- if ($manifest == false ) { //if api_set_failure
+ if (!$manifest) { //if api_set_failure
return api_failure::set_failure(api_failure::get_last_failure());
}
if(!empty($manifest)){
diff --git a/main/newscorm/lp_view.php b/main/newscorm/lp_view.php
index d562cd28ca..e06b3f071e 100755
--- a/main/newscorm/lp_view.php
+++ b/main/newscorm/lp_view.php
@@ -1,4 +1,4 @@
-encoding)) {
@@ -100,12 +100,12 @@ if (!isset($src)) {
$htmlHeadXtra[] = '';
$prereq_check = $_SESSION['oLP']->prerequisites_match($lp_item_id);
if($prereq_check === true){
- $src = $_SESSION['oLP']->get_link('http',$lp_item_id);
+ $src = $_SESSION['oLP']->get_link('http',$lp_item_id);
//Prevents FF 3.6 + Adobe Reader 9 bug see BT#794 when calling a pdf file in a LP
- $file_info = pathinfo($src);
+ $file_info = pathinfo($src);
if (api_strtolower(substr($file_info['extension'], 0, 3) == 'pdf')) {
$src = 'lp_view_item.php?src='.$src;
- }
+ }
$_SESSION['oLP']->start_current_item(); //starts time counter manually if asset
} else {
$src = 'blank.php?error=prerequisites';
@@ -327,7 +327,7 @@ if($_SESSION['oLP']->mode == 'fullscreen') {
get_html_toc(); ?>
- scorm_debug)) { //only show log
+ scorm_debug)) { //only show log
?>
@@ -342,7 +342,7 @@ if($_SESSION['oLP']->mode == 'fullscreen') {
-
+
'') $styling = ' class="'.$style.'"';
- if($new_window == true){ $target = ' target = "_blank" ';}else{$target = ' target = "_self" ';}
+ if ($new_window) { $target = ' target = "_blank" '; } else { $target = ' target = "_self" '; }
$output = '';
diff --git a/main/newscorm/scorm_api.php b/main/newscorm/scorm_api.php
index 86201da8e2..d6de454fe7 100755
--- a/main/newscorm/scorm_api.php
+++ b/main/newscorm/scorm_api.php
@@ -854,12 +854,11 @@ function LMSFinish(val) {
olms.G_LastErrorMessage = 'No error';
// if olms.commit == false, then the SCORM didn't ask for a commit, so we
// should at least report that
- if (( olms.commit == false )) {
+ if ( !olms.commit ) {
logit_scorm('LMSFinish() (no LMSCommit())',1);
-
}
- //if ( olms.commit == true ) {
+ //if ( olms.commit ) {
logit_scorm('LMSFinish() called',1);
savedata('finish');
olms.commit = false;
@@ -1017,7 +1016,7 @@ function addListeners(){
*/
function lms_save_asset(){
// only for dokeos lps
- if (olms.execute_stats==true) {
+ if (olms.execute_stats) {
olms.execute_stats=false;
} else {
olms.execute_stats=true;
@@ -1178,7 +1177,7 @@ function update_toc(update_action,update_id,change_ids)
* Update the stats frame using a reload of the frame to avoid unsynched data
*/
function update_stats() {
- if (olms.execute_stats==true) {
+ if (olms.execute_stats) {
try {
cont_f = document.getElementById('content_id');
cont_f.src="lp_controller.php?action=stats";
@@ -1254,7 +1253,7 @@ function process_scorm_values () {
for (i=0;i
exportValues();
$res = NotebookManager::save_note($values);
- if ($res == true){
+ if ($res) {
Display::display_confirmation_message(get_lang('NoteAdded'));
}
}
diff --git a/main/online/online_message.php b/main/online/online_message.php
index 31fff6cb75..4d02821f21 100755
--- a/main/online/online_message.php
+++ b/main/online/online_message.php
@@ -118,7 +118,7 @@ include('header_frame.inc.php');
diff --git a/main/permissions/permissions_functions.inc.php b/main/permissions/permissions_functions.inc.php
index 24e632670f..635d0d60a0 100755
--- a/main/permissions/permissions_functions.inc.php
+++ b/main/permissions/permissions_functions.inc.php
@@ -247,7 +247,7 @@ function display_checkbox_matrix($permission_array, $tool, $permission, $inherit
*/
function display_image_matrix($permission_array, $tool, $permission,$inherited_permissions=array(), $course_admin=false, $editable=true)
{
- if($course_admin==true)
+ if ($course_admin)
{
echo "\t\t\t ";
}
@@ -331,7 +331,7 @@ function display_image_matrix($permission_array, $tool, $permission,$inherited_p
function display_image_matrix_for_blogs($permission_array, $user_id, $tool, $permission,$inherited_permissions=array(), $course_admin=false, $editable=true)
{
- if($course_admin==true)
+ if ($course_admin)
{
echo "\t\t\t ";
}
diff --git a/main/reservation/m_item.php b/main/reservation/m_item.php
old mode 100644
new mode 100755
index 805759ed68..a13b1844a5
--- a/main/reservation/m_item.php
+++ b/main/reservation/m_item.php
@@ -85,7 +85,7 @@ if (isset ($_POST['action'])) {
if (count($ids) > 0) {
foreach ($ids as $id) {
$result = Rsys :: delete_item($id);
- if ($result != 0 && $warning <> true)
+ if ($result != 0 && $warning <> true) // TODO: A strange looking logical condition, to be cleaned.
$warning = true;
}
ob_start();
diff --git a/main/reservation/m_item_origineel.php b/main/reservation/m_item_origineel.php
old mode 100644
new mode 100755
index c60a1c7834..43d80b706a
--- a/main/reservation/m_item_origineel.php
+++ b/main/reservation/m_item_origineel.php
@@ -79,7 +79,7 @@ if (isset ($_POST['action'])) {
if (count($ids) > 0) {
foreach ($ids as $id) {
$result = Rsys :: delete_item($id);
- if ($result != 0 && $warning <> true)
+ if ($result != 0 && $warning <> true) // TODO: A strange looking logical condition, to be cleaned.
$warning = true;
}
ob_start();
diff --git a/main/social/profile.php b/main/social/profile.php
index 08a4680f55..342975c565 100755
--- a/main/social/profile.php
+++ b/main/social/profile.php
@@ -27,7 +27,7 @@ if (isset($_GET['u'])) {
if (api_get_user_id() != $user_id) {
$user_info = UserManager::get_user_info_by_id($user_id);
$show_full_profile = false;
- if ($user_info==false) {
+ if (!$user_info) {
// user does no exist !!
api_not_allowed();
} else {
@@ -517,7 +517,7 @@ echo '';
}
// COURSES LIST
-
+
if ($show_full_profile) {
if ( is_array($list) ) {
echo '
';
@@ -571,7 +571,7 @@ echo '
';
//--Productions
$production_list = UserManager::build_production_list($user_id);
-
+
// Images uploaded by course
$file_list = '';
if (is_array($course_list_code) && count($course_list_code)>0) {
@@ -603,11 +603,11 @@ echo '
';
echo '
';
echo '
';
echo '
';
-
+
echo '
';
- $user_info = api_get_user_info($user_invitation_id);
+ $user_info = api_get_user_info($user_invitation_id);
echo '
'.api_get_person_name($user_info['firstname'], $user_info['lastname']).' ';
- echo '
';
+ echo '
';
echo ' '.(substr($pending_invitations[$i]['content'],0,50));
echo '
';
echo '
'.get_lang('SocialAddToFriends').' ';
@@ -631,7 +631,7 @@ echo '
';
echo '
';
}
// Images uploaded by course
-
+
if (!empty($file_list)) {
echo '
'.get_lang('ImagesUploaded').' ';
echo '
';
diff --git a/main/survey/create_new_survey.php b/main/survey/create_new_survey.php
index 934b6e2ba4..33f0928840 100755
--- a/main/survey/create_new_survey.php
+++ b/main/survey/create_new_survey.php
@@ -208,7 +208,7 @@ if ($survey_data['survey_type'] == 1 || $_GET['action'] == 'add') {
if ((isset($_GET['action']) && $_GET['action'] == 'edit') && !empty($survey_id)) {
if ($survey_data['anonymous'] == 0) {
- $form->addElement('checkbox', 'show_form_profile', get_lang('ShowFormProfile'), '', 'onclick="javascript: if(this.checked==true){document.getElementById(\'options_field\').style.display = \'block\';}else{document.getElementById(\'options_field\').style.display = \'none\';}"');
+ $form->addElement('checkbox', 'show_form_profile', get_lang('ShowFormProfile'), '', 'onclick="javascript: if(this.checked){document.getElementById(\'options_field\').style.display = \'block\';}else{document.getElementById(\'options_field\').style.display = \'none\';}"');
if ($survey_data['show_form_profile'] == 1) {
$form -> addElement('html', '
');
diff --git a/main/upload/index.php b/main/upload/index.php
index a1fbd83584..11f0311fe1 100755
--- a/main/upload/index.php
+++ b/main/upload/index.php
@@ -33,7 +33,7 @@ $htmlHeadXtra[] =
"
'; + echo '
'; echo ' '.(substr($pending_invitations[$i]['content'],0,50)); echo '
'; echo ''.get_lang('SocialAddToFriends').''; @@ -631,7 +631,7 @@ echo '
'.get_lang('ImagesUploaded').'