2008-08-04 Esteban Sánchez <estebans@artica.es>

* extensions/hello.php: Fixed old function name. Activate the 
        extension by default. Style correction.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@999 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
esanchezm 2008-08-04 08:53:10 +00:00
parent f0db43b8fe
commit 8f3b244e66
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2008-08-04 Esteban Sánchez <estebans@artica.es>
* extensions/hello.php: Fixed old function name. Activate the
extension by default. Style correction.
2008-08-04 Esteban Sánchez <estebans@artica.es>
* godmode/extensions.php, operation/extensions.php: Added to

View File

@ -1,7 +1,6 @@
<?php
/* Remove this statement to enabled the extension */
return;
/* You can safely delete this file */
function hello_extension_main () {
/* Here you can do almost all you want! */
@ -12,5 +11,5 @@ function hello_extension_main () {
add_operation_menu_option ('Hello plugin!');
/* This sets the function to be called when the extension is selected in the operation menu */
add_plugin_main_function ('hello_extension_main');
add_extension_main_function ('hello_extension_main');
?>