diff --git a/main/wiki/index.php b/main/wiki/index.php index 5fee16fa0f..36cdbc1a19 100644 --- a/main/wiki/index.php +++ b/main/wiki/index.php @@ -905,89 +905,94 @@ if ($_GET['action']=='links') } else { - - $sql='SELECT * FROM '.$tbl_wiki.' WHERE reflink="'.html_entity_decode(Database::escape_string(stripslashes(urldecode($page)))).'" AND '.$groupfilter.''; - $result=api_sql_query($sql,__FILE__,__LINE__); //necessary for pages with compound name. TODO: check if necessay after have fixed wanted pages with _ - - $row=Database::fetch_array($result); - echo $LinksPagesFrom.': '.$row['title'].''; - - if ($page==get_lang('DefaultTitle')) - { - $page='index'; - } - $sql="SELECT * FROM ".$tbl_wiki." WHERE ".$groupfilter." AND linksto LIKE '%".html_entity_decode(Database::escape_string(stripslashes(urldecode($page))))." %' GROUP BY reflink ORDER BY title ASC"; //add blank space after like '%" " %' to identify each word + $sql='SELECT * FROM '.$tbl_wiki.' WHERE reflink="'.html_entity_decode(Database::escape_string(stripslashes(urldecode($page)))).'" AND '.$groupfilter.''; + $result=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($result); + //get type assignment icon + + if($row['assignment']==1) + { + $ShowAssignment=''.get_lang('AssignmentDesc').''; + } + elseif ($row['assignment']==2) + { + $ShowAssignment=''.get_lang('AssignmentWork').''; + } + elseif ($row['assignment']==0) + { + $ShowAssignment=''; + } - $result=api_sql_query($sql,__LINE__,__FILE__); - - //show result + //fix index to reflink Main page (see linksto) + if ($page=='index') + { + $page=str_replace(' ','_',get_lang('DefaultTitle')); + } + + echo $LinksPagesFrom.': '.$ShowAssignment.''.$row['title'].''; - echo ''; + $ShowAssignment=''.get_lang('AssignmentWork').''; + } + elseif ($obj->assignment==0) + { + $ShowAssignment=''; + } + + $row = array (); + $row[] =$ShowAssignment; + $row[] = ''.$obj->title.''; + $row[] = $obj->user_id <>0 ? ''.$userinfo['lastname'].', '.$userinfo['firstname'].'' : get_lang('Anonymous').' ('.$obj->user_ip.')'; + $row[] = $day.' '.$MonthsLong[$month-1].' '.$year.' '.$hours.":".$minutes.":".$seconds; + $rows[] = $row; + } + + $table = new SortableTableFromArrayConfig($rows,1,10,'AllPages_table','','','ASC'); + $table->set_additional_parameters(array('cidReq' =>$_GET['cidReq'],'action'=>$_GET['action'],'group_id'=>Security::remove_XSS($_GET['group_id']))); + $table->set_header(0,get_lang('Type'), true, array ('style' => 'width:30px;')); + $table->set_header(1,get_lang('Title'), true); + $table->set_header(2,get_lang('Author'), true); + $table->set_header(3,get_lang('Date'), true); + $table->display(); + } } } @@ -1403,7 +1408,6 @@ if ($_GET['action']=='recentchanges') echo '
'; echo ''.get_lang('RecentChanges').' '.$notify_all.'
'; echo '
'; - echo '