diff --git a/documentation/credits.html b/documentation/credits.html
index f8a6b97fae..5770bdf297 100755
--- a/documentation/credits.html
+++ b/documentation/credits.html
@@ -18,7 +18,6 @@
Documentation > Credits
Creator (2000)
-
Thomas De Praetere (thomas.depraetere@dokeos.com)
Core developers
@@ -30,6 +29,12 @@ Thomas De Praetere (thomas.depraetere@dokeos.com)
Christian Fasanando (christian534@hotmail.com)
+ Independent (2008-2011)
+
+ - Juan Carlos Raña Trabado - considerable work on the wiki integration and improvements, and the FCKEditor/Mimetex extension as well as *many* FCKEditor's file manager and other modules improvements, as well as a continuous stream of recommendations that helped shape 1.8.5 and 1.8.6.*
+ - Ivan Tcholakov - various bugfixes in 1.8.6.*, very accurate bug reporting contributions and a considerable work in the integration of a new version of FCKEditor, along with a bunch of useful plugins and an exceptional work on internationalization
+
+
Dokeos (2004-2009)
- Arnaud Ligot (arnaud@cblue.be)
@@ -62,14 +67,6 @@ Thomas De Praetere (thomas.depraetere@dokeos.com)
- Bart Mollet (bart.mollet@hogent.be)
-
- Independent (2008-2011)
-
- - Juan Carlos Raña Trabado - considerable work on the wiki integration and improvements, and the FCKEditor/Mimetex extension as well as *many* FCKEditor's file manager and other modules improvements, as well as a continuous stream of recommendations that helped shape 1.8.5 and 1.8.6.*
- - Ivan Tcholakov - various bugfixes in 1.8.6.*, very accurate bug reporting contributions and a considerable work in the integration of a new version of FCKEditor, along with a bunch of useful plugins and an exceptional work on internationalization
-
-
-
Quality Assurance
@@ -514,14 +511,14 @@ Please see http://www.chamilo.com/DLTT/ to see a list of the translators.
Michela Karina Mosquera Guardamino, for helping improve the visibility of Dokeos in the Latin American area, patiently answering crazy amounts
of information requests and organizing great community events
Jhon Rhoos Hinojosa Portuguez, for various bugfixes in 1.8.6
- Carlos Vargas, for a huge amount of bugfixes in 1.8.6
+ Carlos Vargas (litox84@hotmail.com), for a huge amount of bugfixes in 1.8.6
Jan Derriks- various bugfixes in 1.8.7 and very accurate bug reporting contributions
Ronny Velasquez, for a series of bugfixes and improvements in 1.8.6
Ricardo Rodriguez, for implementing the first set of unit tests in 1.8.6, and manual testing and reporting
Franco Cedillo, for minor bugfixes in 1.8.6
Ruben Pereira, Ana Elena Olivera and all the kids from the Joaquin Sant'Anna school for being an inspiration to all of us.
Wolfgang Schneider for various bugfixes in various tools
- Carlos Brolo for reporting bugs for 1.8.7
+ Carlos Brolo for reporting bugs for 1.8.7
Hubert Borderiou - various bugfixes in 1.8.7 and very accurate bug reporting contributions
David Auzeine- various bugfixes in 1.8.7
Anna Frovola for reporting bugs for 1.8.7
diff --git a/tests/datafiller/data_courses.php b/tests/datafiller/data_courses.php
new file mode 100755
index 0000000000..489f5840d2
--- /dev/null
+++ b/tests/datafiller/data_courses.php
@@ -0,0 +1,23 @@
+
+ *
+ */
+/**
+ * Initialisation section
+ */
+global $_configuration;
+$courses = array();
+$courses[] = array(
+ 'code' => 'ENGLISH101',
+ 'title' => 'English for beginners',
+ 'tutor' => '',
+ 'category' => 'PROJ',
+ 'language' => 'english',
+ 'admin_id' => 1,
+ 'db_prefix' => $_configuration['db_prefix'],
+ 'expires' => '2020-09-01 00:00:00',
+ 'fill' => true,
+);
diff --git a/tests/datafiller/fill_courses.php b/tests/datafiller/fill_courses.php
new file mode 100755
index 0000000000..b94c67343d
--- /dev/null
+++ b/tests/datafiller/fill_courses.php
@@ -0,0 +1,31 @@
+
+ *
+ */
+/**
+ * Initialisation section
+ */
+//require_once '../../main/inc/global.inc.php';
+require_once api_get_path(LIBRARY_PATH).'add_course.lib.inc.php';
+/**
+ * Loads the data and injects it into the Chamilo database, using the Chamilo
+ * internal functions.
+ * @return array List of user IDs for the users that have just been inserted
+ */
+function fill_courses() {
+ $eol = PHP_EOL;
+ $courses = array(); //declare only to avoid parsing notice
+ require_once 'data_courses.php'; //fill the $users array
+ $output = array();
+ $output[] = array('title'=>'Courses Filling Report:');
+ $i = 1;
+ foreach ($courses as $i => $course) {
+ //first check that the first item doesn't exist already
+ $output[$i]['line-init'] = $course['title'];
+ $output[$i]['line-info'] = (create_course($course[)?$res:get_lang('NotInserted'));
+ $i++;
+ }
+ return $output;
+}
diff --git a/tests/datafiller/fill_users.php b/tests/datafiller/fill_users.php
index 982b0bd502..87d2d6c82b 100755
--- a/tests/datafiller/fill_users.php
+++ b/tests/datafiller/fill_users.php
@@ -1,7 +1,7 @@
+ * @author Yannick Warnier
*
*/
/**
@@ -10,7 +10,7 @@
//require_once '../../main/inc/global.inc.php';
require_once api_get_path(LIBRARY_PATH).'usermanager.lib.php';
/**
- * Loads the data and injects it into the Dokeos database, using the Dokeos
+ * Loads the data and injects it into the Chamilo database, using the Chamilo
* internal functions.
* @return array List of user IDs for the users that have just been inserted
*/