diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-07-11 15:47:04 -0700 | 
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-07-11 15:47:04 -0700 | 
| commit | 4132d6c55ed91ca66607680bc44775c4ba650da6 (patch) | |
| tree | f1a994de94895ca60350afc47905dd4d3fba53b6 /modules/gallery/libraries | |
| parent | f1b2a14f4fe1bfd9419d4023b6b6223bc39c379b (diff) | |
Put quotes around the href param (href="#")
Diffstat (limited to 'modules/gallery/libraries')
| -rw-r--r-- | modules/gallery/libraries/Menu.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/gallery/libraries/Menu.php b/modules/gallery/libraries/Menu.php index 9ede49b6..d37be7d3 100644 --- a/modules/gallery/libraries/Menu.php +++ b/modules/gallery/libraries/Menu.php @@ -207,7 +207,7 @@ class Menu_Core extends Menu_Element {    public function __toString() {      $html = $this->is_root ? "<ul class=\"gMenu\">" : -      "<li title=\"$this->label\"><a href=#>$this->label</a><ul class=\"gMenu\">"; +      "<li title=\"$this->label\"><a href=\"#\">$this->label</a><ul class=\"gMenu\">";      $html .= implode("\n", $this->elements);      $html .= $this->is_root ? "</ul>" : "</ul></li>";      return $html; | 
