Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv29385/phpwiki/lib
Modified Files:
WikiPlugin.php
Log Message:
Updated plugins for a more complete localized experience.
Index: WikiPlugin.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/WikiPlugin.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** WikiPlugin.php 2001/12/15 11:28:15 1.4
--- WikiPlugin.php 2001/12/16 11:52:35 1.5
***************
*** 16,24 ****
function getName() {
! return $this->name;
}
function getDescription() {
! return _($this->description);
}
--- 16,24 ----
function getName() {
! return gettext($this->name);
}
function getDescription() {
! return gettext($this->description);
}
***************
*** 128,132 ****
$attr['onmouseout'] = "window.status='';return true;";
}
! return QElement('a', $attr, _($args['linktext']));
}
--- 128,132 ----
$attr['onmouseout'] = "window.status='';return true;";
}
! return QElement('a', $attr, $args['linktext']);
}
|