Skip to content
Snippets Groups Projects
Commit 46bf2a4c authored by Prasad's avatar Prasad
Browse files

Merge branch 'master' of http://code.vtiger.com/vtiger/vtigercrm

parents 9b3cfc43 8e99d682
No related branches found
No related tags found
No related merge requests found
...@@ -345,9 +345,14 @@ $toHtml = array( ...@@ -345,9 +345,14 @@ $toHtml = array(
*/ */
function to_html($string, $encode=true) function to_html($string, $encode=true)
{ {
$startstring=$string;
$cachedresult=Vtiger_Cache::get('to_html',$startstring);
if($cachedresult){
return $cachedresult;
}
global $log,$default_charset; global $log,$default_charset;
//$log->debug("Entering to_html(".$string.",".$encode.") method ..."); //$log->debug("Entering to_html(".$string.",".$encode.") method ...");
global $toHtml;
$action = $_REQUEST['action']; $action = $_REQUEST['action'];
$search = $_REQUEST['search']; $search = $_REQUEST['search'];
...@@ -385,6 +390,7 @@ function to_html($string, $encode=true) ...@@ -385,6 +390,7 @@ function to_html($string, $encode=true)
} }
//$log->debug("Exiting to_html method ..."); //$log->debug("Exiting to_html method ...");
Vtiger_Cache::set('to_html', $startstring, $string);
return $string; return $string;
} }
......
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
<div id="progressIndicator" class="row-fluid main-container hide"> <div id="progressIndicator" class="row-fluid main-container hide">
<div class="inner-container"> <div class="inner-container">
<div class="span12 inner-container"> <div class="inner-container">
<div class="row-fluid"> <div class="row-fluid">
<div class="span12 welcome-div alignCenter"> <div class="span12 welcome-div alignCenter">
<h3>{vtranslate('LBL_INSTALLATION_IN_PROGRESS','Install')}...</h3><br> <h3>{vtranslate('LBL_INSTALLATION_IN_PROGRESS','Install')}...</h3><br>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment