Skip to content

Commit

Permalink
MDL-48359 webservices: Removed table from documentation page
Browse files Browse the repository at this point in the history
  • Loading branch information
marsh0lion committed Nov 25, 2014
1 parent ca0e301 commit e45d9cd
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions webservice/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -643,10 +643,6 @@ public function documentation_html($functions, $printableformat, $activatedproto
$docurl = new moodle_url('http://docs.moodle.org/dev/Creating_a_web_service_client');
$docinfo->doclink = html_writer::tag('a',
get_string('wsclientdoc', 'webservice'), array('href' => $docurl));
$documentationhtml .= html_writer::start_tag('table',
array('style' => "margin-left:auto; margin-right:auto;"));
$documentationhtml .= html_writer::start_tag('tr', array());
$documentationhtml .= html_writer::start_tag('td', array());
$documentationhtml .= get_string('wsdocumentationintro', 'webservice', $docinfo);
$documentationhtml .= $br . $br;

Expand Down Expand Up @@ -811,11 +807,6 @@ public function documentation_html($functions, $printableformat, $activatedproto
}
}

// close the table and return the documentation
$documentationhtml .= html_writer::end_tag('td');
$documentationhtml .= html_writer::end_tag('tr');
$documentationhtml .= html_writer::end_tag('table');

return $documentationhtml;
}

Expand Down

0 comments on commit e45d9cd

Please sign in to comment.