Skip to content

Commit

Permalink
refs #514 : merge with 2.0 tree.
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Feb 25, 2011
2 parents 46e0891 + 2eed058 commit b1d2504
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/preprocessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
Determine the resource URLs and paths.
*/
if(is_null($context->getProperty('service.jqueryURL'))) {
$context->setProperty('service.jqueryURL',$context->getProperty('service.path')."/resources/script/jquery/";
$context->setProperty('service.jqueryURL',$context->getProperty('service.path')."/resources/script/jquery/");
}
/** Administration panel skin / editor template
-------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions resources/setup/initialize.Cubrid.sql
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ CREATE TABLE [##_dbPrefix_##]Sessions (
timer float default 0 NOT NULL,
created integer default 0 NOT NULL,
updated integer default 0 NOT NULL,
expires integer default 0 NOT NULL,
PRIMARY KEY (id,address)
) [##_charset_##];
CREATE INDEX [##_dbPrefix_##]Sessions_updated_idx ON [##_dbPrefix_##]Sessions (updated);
Expand Down
1 change: 1 addition & 0 deletions resources/setup/initialize.MySQL.sql
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ CREATE TABLE [##_dbPrefix_##]Sessions (
timer float NOT NULL default '0',
created int(11) NOT NULL default '0',
updated int(11) NOT NULL default '0',
expires int(11) NOT NULL default '0',
PRIMARY KEY (id,address),
KEY updated (updated)
) [##_charset_##];
Expand Down
1 change: 1 addition & 0 deletions resources/setup/initialize.PostgreSQL.sql
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ CREATE TABLE [##_dbPrefix_##]Sessions (
timer float NOT NULL default 0,
created integer NOT NULL default 0,
updated integer NOT NULL default 0,
expires integer NOT NULL default 0,
PRIMARY KEY (id,address)
) [##_charset_##];
CREATE INDEX [##_dbPrefix_##]Sessions_updated_idx ON [##_dbPrefix_##]Sessions (updated);
Expand Down
3 changes: 1 addition & 2 deletions rewrite.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
/// Copyright (c) 2004-2011, Needlworks / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT)

define('ROOT', '.');
require_once(ROOT.'/framework/Dispatcher.php');
/** Dispatching Interface request via URI */
$dispatcher = Dispatcher::getInstance();
/** Interface Loading */
if (empty($service['debugmode'])) { @include_once $dispatcher->interfacePath;}
else {include_once $dispatcher->interfacePath;}
?>
?>

0 comments on commit b1d2504

Please sign in to comment.