Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_searchhighlight
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10304/plugins/serendipity_event_searchhighlight
Modified Files:
serendipity_event_searchhighlight.php
Log Message:
- Merged author and admin suites
- New separated layout for Administration Suite
- Fixed lots of layout quirks, make the admin look more unified
- Fixed some invalid HTML (unclosed/excess tags)
- Remove some unneeded session_start() functions in included admin files
- Allow $plugin->get_config() to return the default value as defined in introspect_config_item, when only given one argument
- Fixed bug in upgrader, not allowing multiple upgrade functions for a single version
- Killed serendipity_printLogin() and moved it to serendipity_admin.php
- Pretty up the iframe stuff
- Added aliases to some adminModules
Index: serendipity_event_searchhighlight.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_searchhighlight/serendipity_event_searchhighlight.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- serendipity_event_searchhighlight.php 19 Nov 2004 11:24:57 -0000 1.6
+++ serendipity_event_searchhighlight.php 27 Nov 2004 22:14:19 -0000 1.7
@@ -68,7 +68,7 @@
$propbag->add('type', 'boolean');
$propbag->add('name', $name);
$propbag->add('description', sprintf(APPLY_MARKUP_TO, $name));
- $propbag->add('default', 'true');
+ $propbag->add('default', 'true');
return true;
}
@@ -186,7 +186,7 @@
}
foreach ($this->markup_elements as $temp) {
- if ( ! (serendipity_db_bool($this->get_config($temp['name'], true)) && isset($eventData[$temp['element']])) ) {
+ if ( ! (serendipity_db_bool($this->get_config($temp['name'])) && isset($eventData[$temp['element']])) ) {
continue;
}
@@ -222,4 +222,4 @@
}
/* vim: set sts=4 ts=4 expandtab : */
-?>
\ No newline at end of file
+?>
|