public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
Changed to escape backslashes in the root_path setting

git-svn-id: http://svn.cmsmadesimple.org/svn/cmsmadesimple/trunk@3770 
3d254a34-79dc-0310-9e5f-be208747d8a0
tedkulp (author)
Tue Jan 23 12:11:43 -0800 2007
commit  1a9d5097c87d1b0e463cd204603546f661315206
tree    4050ad86c6e8d3ad165e5c7b643c8c06b87ab387
parent  9a457b293ef1b48fcd88db300b91321c817cfe45
...
5
6
7
 
 
8
9
10
...
5
6
7
8
9
10
11
12
0
@@ -5,6 +5,8 @@ Version 1.0.4 "Lanai" -- subversion
0
   end of index.php
0
 - Fixed issues with breadcrumbs, including nodes not showing up and
0
   duplicate nodes showing
0
+- Fixed the warning that showed up in the 25 to 26 upgrade script
0
+ if you didn't have any events
0
 
0
 Version 1.0.3 "Kauai" -- Jan 18 2007
0
 -----------------
...
965
966
967
968
 
969
970
971
...
965
966
967
 
968
969
970
971
0
@@ -965,7 +965,7 @@ function showPageFive() {
0
   $newconfig['db_name'] = $_POST['database'];
0
   $newconfig['db_prefix'] = $_POST['prefix'];
0
   $newconfig['root_url'] = $_POST['docroot'];
0
- $newconfig['root_path'] = str_replace('\\', '\', addslashes($_POST['docpath']));
0
+ $newconfig['root_path'] = str_replace('\\\\', '\\', addslashes($_POST['docpath']));
0
   $newconfig['query_var'] = $_POST['querystr'];
0
   $newconfig['use_bb_code'] = false;
0
   $newconfig['use_smarty_php_tags'] = false;

Comments

    No one has commented yet.