diff --git a/main/course_description/edit.php b/main/course_description/edit.php
index b92b70e5e1..fbbdc54f1c 100755
--- a/main/course_description/edit.php
+++ b/main/course_description/edit.php
@@ -77,7 +77,7 @@ if ($description_type == THEMATIC_ADVANCE) {
$form->addElement('style_submit_button', null, get_lang('Save'), 'class="save"');
// Set some default values
$default['title'] = Security::remove_XSS($description_title);
-$default['contentDescription'] = Security::remove_XSS($description_content,STUDENT);
+$default['contentDescription'] = Security::remove_XSS($description_content,COURSEMANAGERLOWSECURITY);
$default['description_type'] = $description_type;
$form->setDefaults($default);
diff --git a/main/dropbox/index.php b/main/dropbox/index.php
index cbc6b5acb6..b69d6ca50d 100755
--- a/main/dropbox/index.php
+++ b/main/dropbox/index.php
@@ -580,7 +580,7 @@ if ($_GET['action'] != 'add') {
$receivers_celldata = trim(trim($receivers_celldata), ','); // Removing the trailing comma.
$dropbox_file_data[] = $receivers_celldata;
$last_upload_date = api_get_local_time($dropbox_file->last_upload_date, 'Y-m-d H:i:s', null, date_default_timezone_get());
- $dropbox_file_data[] = date_to_str_ago($last_upload_date).' '.api_get_local_time($last_upload_date).'';
+ $dropbox_file_data[] = date_to_str_ago($last_upload_date).' '.api_format_date_time_long($last_upload_date).'';
//$dropbox_file_data[] = $dropbox_file->author;
$receivers_celldata = '';
diff --git a/main/inc/lib/text.lib.php b/main/inc/lib/text.lib.php
index d53bb2a968..8c7d5ba8e6 100755
--- a/main/inc/lib/text.lib.php
+++ b/main/inc/lib/text.lib.php
@@ -1,19 +1,14 @@
-\\1://\\2",$string);
- $string=eregi_replace("([a-z0-9_.-]+@[a-z0-9.-]+)","\\1",$string);
+function make_clickable($string) {
+ // TODO: eregi_replace() is deprecated as of PHP 5.3
+ if (!stristr($string, ' src=') && !stristr($string, ' href=')) {
+ $string = eregi_replace("(https?|ftp)://([a-z0-9#?/&=._+:~%-]+)", "\\1://\\2", $string);
+ $string = eregi_replace("([a-z0-9_.-]+@[a-z0-9.-]+)", "\\1", $string);
}
-
return $string;
}
/**
- * formats the date according to the locale settings
+ * Formats the date according to the locale settings
*
* @author Patrick Cool , Ghent University
- * @author Christophe Gesch�
+ * @author Christophe Gesché
* originally inspired from from PhpMyAdmin
* @param string $date_format date pattern
* @param integer $time_stamp, default is NOW.
* @return the formatted date
*/
-function format_locale_date($date_format, $time_stamp = -1, $language = null)
-{
- /*
- static $initialized = false;
- static $days_short, $days_long, $months_short, $months_long;
-
- if (!$initialized)
- {
- // Defining the shorts for the days
- $days_short = array (get_lang("SundayShort"), get_lang("MondayShort"), get_lang("TuesdayShort"), get_lang("WednesdayShort"), get_lang("ThursdayShort"), get_lang("FridayShort"), get_lang("SaturdayShort"));
- // Defining the days of the week to allow translation of the days
- $days_long = array (get_lang("SundayLong"), get_lang("MondayLong"), get_lang("TuesdayLong"), get_lang("WednesdayLong"), get_lang("ThursdayLong"), get_lang("FridayLong"), get_lang("SaturdayLong"));
- // Defining the shorts for the months
- $months_short = array (get_lang("JanuaryShort"), get_lang("FebruaryShort"), get_lang("MarchShort"), get_lang("AprilShort"), get_lang("MayShort"), get_lang("JuneShort"), get_lang("JulyShort"), get_lang("AugustShort"), get_lang("SeptemberShort"), get_lang("OctoberShort"), get_lang("NovemberShort"), get_lang("DecemberShort"));
- // Defining the months of the year to allow translation of the months
- $months_long = array (get_lang("JanuaryLong"), get_lang("FebruaryLong"), get_lang("MarchLong"), get_lang("AprilLong"), get_lang("MayLong"), get_lang("JuneLong"), get_lang("JulyLong"), get_lang("AugustLong"), get_lang("SeptemberLong"), get_lang("OctoberLong"), get_lang("NovemberLong"), get_lang("DecemberLong"));
-
- $initialized = true;
- }
-
- if ($time_stamp == -1) $time_stamp = time();
-
- // with the ereg we replace %aAbB of date format
- //(they can be done by the system when locale date aren't aivailable
-
- $date = ereg_replace('%[A]', $days_long[(int)strftime('%w', $time_stamp)], $date_format);
- $date = ereg_replace('%[a]', $days_short[(int)strftime('%w', $time_stamp)], $date);
- $date = ereg_replace('%[B]', $months_long[(int)strftime('%m', $time_stamp)-1], $date);
- $date = ereg_replace('%[b]', $months_short[(int)strftime('%m', $time_stamp)-1], $date);
-
- return strftime($date, $time_stamp);
- */
+function format_locale_date($date_format, $time_stamp = -1, $language = null) {
return api_format_date($date_format, $time_stamp, $language);
-} // end function format_locale_date
-
+}
/**
-* @desc this function does some parsing on the text that gets inputted. This parsing can be of any kind
-* LaTeX notation, Word Censoring, Glossary Terminology (extension will available soon), Musical Notations, ...
-* The inspiration for this filter function came from Moodle an phpBB who both use a similar approach
-* @param $input string. some text
-* @return $output string. some text that contains the parsed elements.
-* @example [tex]\sqrt(2)[/tex]
-* @author Patrick Cool
-* @version March 2OO6
-*/
-function text_filter($input, $filter=true)
-{
+ * @desc This function does some parsing on the text that gets inputted. This parsing can be of any kind
+ * LaTeX notation, Word Censoring, Glossary Terminology (extension will available soon), Musical Notations, ...
+ * The inspiration for this filter function came from Moodle an phpBB who both use a similar approach
+ * @param $input string. some text
+ * @return $output string. some text that contains the parsed elements.
+ * @example [tex]\sqrt(2)[/tex]
+ * @author Patrick Cool
+ * @version March 2OO6
+ */
+function text_filter($input, $filter = true) {
- //$input=stripslashes($input);
+ //$input = stripslashes($input);
- if ($filter==true)
- {
+ if ($filter) {
// *** parse [tex]...[/tex] tags *** //
// which will return techexplorer or image html depending on the capabilities of the
// browser of the user (using some javascript that checks if the browser has the TechExplorer plugin installed or not)
- $input=_text_parse_tex($input);
-
+ $input = _text_parse_tex($input);
// *** parse [teximage]...[/teximage] tags *** //
// these force the gif rendering of LaTeX using the mimetex gif renderer
//$input=_text_parse_tex_image($input);
-
// *** parse [texexplorer]...[/texexplorer] tags *** //
// these force the texeplorer LaTeX notation
- $input=_text_parse_texexplorer($input);
+ $input = _text_parse_texexplorer($input);
// *** Censor Words *** //
// censor words. This function removes certain words by [censored]
@@ -135,8 +92,8 @@ function text_filter($input, $filter=true)
// $input=text_censor_words($input);
// *** parse [?]...[/?] tags *** //
- // for the glossary tool (see http://www.dokeos.com/extensions)
- $input=_text_parse_glossary($input);
+ // for the glossary tool
+ $input = _text_parse_glossary($input);
// parse [wiki]...[/wiki] tags
// this is for the coolwiki plugin.
@@ -156,9 +113,8 @@ function text_filter($input, $filter=true)
return $input;
}
-
/**
- * Apply parsing to content to parse tex commandos that are seperated by [tex]
+ * Applies parsing for tex commandos that are seperated by [tex]
* [/tex] to make it readable for techexplorer plugin.
* This function should not be accessed directly but should be accesse through the text_filter function
* @param string $text The text to parse
@@ -166,21 +122,17 @@ function text_filter($input, $filter=true)
* @author Patrick Cool
* @version June 2004
*/
-function _text_parse_tex($textext)
-{
+function _text_parse_tex($textext) {
//$textext = str_replace(array ("[tex]", "[/tex]"), array ('[*****]', '[/*****]'), $textext);
//$textext=stripslashes($texttext);
- $input_array=preg_split("/(\[tex]|\[\/tex])/",$textext,-1, PREG_SPLIT_DELIM_CAPTURE);
-
+ $input_array = preg_split("/(\[tex]|\[\/tex])/", $textext, -1, PREG_SPLIT_DELIM_CAPTURE);
- foreach ($input_array as $key=>$value)
- {
- if ($key>0 && $input_array[$key-1]=='[tex]' AND $input_array[$key+1]=='[/tex]')
- {
- $input_array[$key]=latex_gif_renderer($value);
- unset($input_array[$key-1]);
- unset($input_array[$key+1]);
+ foreach ($input_array as $key => $value) {
+ if ($key > 0 && $input_array[$key - 1] == '[tex]' AND $input_array[$key + 1] == '[/tex]') {
+ $input_array[$key] = latex_gif_renderer($value);
+ unset($input_array[$key - 1]);
+ unset($input_array[$key + 1]);
//echo 'LaTeX: