Make WordPress Core

Opened 21 years ago

Closed 21 years ago

Last modified 20 years ago

#208 closed defect (bug) (fixed)

Link Manager

Reported by: yellowled's profile YellowLed Owned by: ryan's profile ryan
Milestone: Priority: normal
Severity: blocker Version:
Component: General Keywords:
Focuses: Cc:

Description

Clicking on 'Links' in the admin area doesn't take me to the Link manager anymore. It says 'Fatal error: Call to undefined function: gethelp_link() in /www/htdocs/blogyl/wp-admin/link-manager.php on line 612'.

Change History (4)

#2 @markmichon
21 years ago

Related error occurs in link-add.php on line 79 when trying to add a link via the bookmarklet.

Not sure if this is a sure fix, but the following is missing from the new wp-admin/admin-header.php file, right under the require portions at the top.

function gethelp_link($this_file, $helptag) {

$url = 'http://wordpress.org/docs/reference/links/#'.$helptag;
$s = ' [a href="'.$url.'" title="' . ('Click here for help') .'"]?a';
return $s;

}

if (!isset($blogID)) $blog_ID=1;
if (!isset($debug)) $debug=0;

replace the [ and ] with the appropriate < symbols

Like I said, it fixes the link manager, but should be meant as a temp fix till someone who actually knows the code fixes it.

edited on: 08-03-04 20:19

#3 @ryan
21 years ago

  • Owner changed from anonymous to rboren
  • Resolution changed from 10 to 20
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.