/
var
/
www
/
html
/
sugardemo
/
modules
/
Documents
/
Upload File
HOME
<?php /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ //updates the link between contract and document with latest revision of //the document and sends the control back to calling page. require_once 'include/formbase.php'; if (!empty($_REQUEST['record'])) { $document = BeanFactory::getBean('Documents', $_REQUEST['record']); if (!empty($document->document_revision_id) && !empty($_REQUEST['get_latest_for_id'])) { $query = 'UPDATE linked_documents' . ' SET document_revision_id = ' . $document->db->quoted($document->document_revision_id) . ', date_modified = ' . $document->db->quoted(TimeDate::getInstance()->nowDb()) . ' WHERE id = ' . $document->db->quoted($_REQUEST['get_latest_for_id']); $document->db->query($query); } } handleRedirect();