@ -453,14 +453,18 @@ if ($_GET['action']=='wanted')
//sort linksto. Find linksto into reflink. If not found ->page is wanted
natcasesort($refs);
echo '<ul>';
foreach($refs as $v)
{
if(!in_array($v, $pages))
{
$wanted[] = $v;
echo $v.'<br>'; //TODO: link to page and convert reflink to title
if (trim($v)!=="")
{
echo '<li>'.str_replace('_',' ',$v).'</li>';
}
}
}
echo '</ul>';
}
/////////////////////// Orphaned pages /////////////////////// Juan Carlos Raña Trabado
@ -697,7 +701,7 @@ if ($_GET['action']=='links')
{
$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
$result=api_sql_query($sql,__FILE__,__LINE__); //necessary for pages with compound name. TODO: check if necessay after have fixed wanted pages with _
$all_links[]= Database::escape_string(str_replace(' ','',$link)).' '; //remove blank spaces within the links. But to remove links at the end add a blank space
$all_links[]= Database::escape_string(str_replace(' ','_',$link)).' '; //replace blank spaces by _ within the links. But to remove links at the end add a blank space
}
}
@ -1775,14 +1779,14 @@ function make_wiki_link_clickable($input)
// note: checkreflink checks if the link is still free. If it is not used then it returns true, if it is used, then it returns false. Now the title may be different
if (checktitle(strtolower(str_replace(' ','',$link))))
if (checktitle(strtolower(str_replace(' ','_',$link))))
if($_clean['assignment']==2 || $_clean['assignment']==1) // Unlike ordinary pages of pages of assignments. Allow create a ordinary page although there is a assignment with the same name