[Vtigercrm-commits] [vtiger-commits] r9547 - in /vtigercrm/branches/5.0.1: ./ cron/ modules/Calendar/ modules/Emails/ modules/Faq/ modules/Invoice/ modules/Leads/ modules/Portal/ modules/Products/ modules/PurchaseOrder/ modules/Rss/ modules/SalesOrder/ modules/Settings/ modules/Users/ modules/Vendors/
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Oct 3 03:21:14 EDT 2006
Author: richie
Date: Tue Oct 3 01:20:52 2006
New Revision: 9547
Log:
* Changed the php short tag ie., changed the tag from <? to <?php
Modified:
vtigercrm/branches/5.0.1/connection.php
vtigercrm/branches/5.0.1/cron/intimateTaskStatus.php
vtigercrm/branches/5.0.1/modules/Calendar/updateRelations.php
vtigercrm/branches/5.0.1/modules/Emails/gotodownload.php
vtigercrm/branches/5.0.1/modules/Faq/index.php
vtigercrm/branches/5.0.1/modules/Invoice/Popup.php
vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php
vtigercrm/branches/5.0.1/modules/Portal/Popup.php
vtigercrm/branches/5.0.1/modules/Portal/Portal.php
vtigercrm/branches/5.0.1/modules/Products/AddProductToPriceBooks.php
vtigercrm/branches/5.0.1/modules/Products/AddProductsToPriceBook.php
vtigercrm/branches/5.0.1/modules/Products/ListView.php
vtigercrm/branches/5.0.1/modules/Products/Popup.php
vtigercrm/branches/5.0.1/modules/PurchaseOrder/Popup.php
vtigercrm/branches/5.0.1/modules/Rss/RssAjax.php
vtigercrm/branches/5.0.1/modules/SalesOrder/ListView.php
vtigercrm/branches/5.0.1/modules/SalesOrder/Popup.php
vtigercrm/branches/5.0.1/modules/Settings/SettingsAjax.php
vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php
vtigercrm/branches/5.0.1/modules/Users/listnotificationschedulers.php
vtigercrm/branches/5.0.1/modules/Users/notify_detail.php
vtigercrm/branches/5.0.1/modules/Vendors/ListView.php
vtigercrm/branches/5.0.1/modules/Vendors/Popup.php
Modified: vtigercrm/branches/5.0.1/connection.php
==============================================================================
--- vtigercrm/branches/5.0.1/connection.php (original)
+++ vtigercrm/branches/5.0.1/connection.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/cron/intimateTaskStatus.php
==============================================================================
--- vtigercrm/branches/5.0.1/cron/intimateTaskStatus.php (original)
+++ vtigercrm/branches/5.0.1/cron/intimateTaskStatus.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
ini_set("include_path", "../:.");
require('send_mail.php');
Modified: vtigercrm/branches/5.0.1/modules/Calendar/updateRelations.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Calendar/updateRelations.php (original)
+++ vtigercrm/branches/5.0.1/modules/Calendar/updateRelations.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Emails/gotodownload.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Emails/gotodownload.php (original)
+++ vtigercrm/branches/5.0.1/modules/Emails/gotodownload.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Faq/index.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Faq/index.php (original)
+++ vtigercrm/branches/5.0.1/modules/Faq/index.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
@@ -13,5 +13,6 @@
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
require_once ($theme_path."layout_utils.php");
- include ('modules/'.$_REQUEST['module'].'/ListView.php');
+include ('modules/'.$_REQUEST['module'].'/ListView.php');
+
?>
Modified: vtigercrm/branches/5.0.1/modules/Invoice/Popup.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Invoice/Popup.php (original)
+++ vtigercrm/branches/5.0.1/modules/Invoice/Popup.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,5 @@
-<?/*********************************************************************************
+<?php
+/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
Modified: vtigercrm/branches/5.0.1/modules/Portal/Popup.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Portal/Popup.php (original)
+++ vtigercrm/branches/5.0.1/modules/Portal/Popup.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Portal/Portal.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Portal/Portal.php (original)
+++ vtigercrm/branches/5.0.1/modules/Portal/Portal.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Products/AddProductToPriceBooks.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Products/AddProductToPriceBooks.php (original)
+++ vtigercrm/branches/5.0.1/modules/Products/AddProductToPriceBooks.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Products/AddProductsToPriceBook.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Products/AddProductsToPriceBook.php (original)
+++ vtigercrm/branches/5.0.1/modules/Products/AddProductsToPriceBook.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Products/ListView.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Products/ListView.php (original)
+++ vtigercrm/branches/5.0.1/modules/Products/ListView.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Products/Popup.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Products/Popup.php (original)
+++ vtigercrm/branches/5.0.1/modules/Products/Popup.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
@@ -9,4 +9,5 @@
*
********************************************************************************/
require_once('Popup.php');
+
?>
Modified: vtigercrm/branches/5.0.1/modules/PurchaseOrder/Popup.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/PurchaseOrder/Popup.php (original)
+++ vtigercrm/branches/5.0.1/modules/PurchaseOrder/Popup.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
@@ -9,4 +9,5 @@
*
********************************************************************************/
require_once('Popup.php');
+
?>
Modified: vtigercrm/branches/5.0.1/modules/Rss/RssAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Rss/RssAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Rss/RssAjax.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
@@ -8,7 +8,8 @@
* All Rights Reserved.
*
********************************************************************************/
-
- require_once('modules/'.$_REQUEST['module'].'/'.$_REQUEST['file'].'.php');
+
+require_once('modules/'.$_REQUEST['module'].'/'.$_REQUEST['file'].'.php');
+
?>
Modified: vtigercrm/branches/5.0.1/modules/SalesOrder/ListView.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/SalesOrder/ListView.php (original)
+++ vtigercrm/branches/5.0.1/modules/SalesOrder/ListView.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/SalesOrder/Popup.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/SalesOrder/Popup.php (original)
+++ vtigercrm/branches/5.0.1/modules/SalesOrder/Popup.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
@@ -8,5 +8,7 @@
* All Rights Reserved.
*
********************************************************************************/
+
require_once('Popup.php');
+
?>
Modified: vtigercrm/branches/5.0.1/modules/Settings/SettingsAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Settings/SettingsAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Settings/SettingsAjax.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,5 @@
-<?/*********************************************************************************
+<?php
+/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
Modified: vtigercrm/branches/5.0.1/modules/Users/listnotificationschedulers.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Users/listnotificationschedulers.php (original)
+++ vtigercrm/branches/5.0.1/modules/Users/listnotificationschedulers.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Users/notify_detail.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Users/notify_detail.php (original)
+++ vtigercrm/branches/5.0.1/modules/Users/notify_detail.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Vendors/ListView.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Vendors/ListView.php (original)
+++ vtigercrm/branches/5.0.1/modules/Vendors/ListView.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
Modified: vtigercrm/branches/5.0.1/modules/Vendors/Popup.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Vendors/Popup.php (original)
+++ vtigercrm/branches/5.0.1/modules/Vendors/Popup.php Tue Oct 3 01:20:52 2006
@@ -1,4 +1,4 @@
-<?
+<?php
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
@@ -8,5 +8,7 @@
* All Rights Reserved.
*
********************************************************************************/
+
require_once('Popup.php');
+
?>
More information about the vtigercrm-commits
mailing list